PEP8 whitespace fixes in gnupg/_meta.py.

fix/99-recv-keys-network-test
Isis Lovecruft 2015-03-13 02:20:48 +00:00
parent 2cf3dd1c86
commit 749ef6fa00
No known key found for this signature in database
GPG Key ID: 18C16EC5F9F1D673
1 changed files with 2 additions and 5 deletions

View File

@ -994,16 +994,13 @@ class GPGBase(object):
for recp in recipients.split(' '):
self._add_recipient_string(args, hidden_recipients, recp)
## ...and now that we've proven py3k is better...
else:
log.debug("Don't know what to do with recipients: '%s'"
% recipients)
result = self._result_map['crypt'](self)
log.debug("Got data '%s' with type '%s'."
% (data, type(data)))
self._handle_io(args, data, result,
passphrase=passphrase, binary=True)
log.debug("Got data '%s' with type '%s'." % (data, type(data)))
self._handle_io(args, data, result, passphrase=passphrase, binary=True)
log.debug("\n%s" % result.data)
if output_filename: