PEP8 whitespace fixes in gnupg/_meta.py.
parent
2cf3dd1c86
commit
749ef6fa00
|
@ -994,16 +994,13 @@ class GPGBase(object):
|
||||||
for recp in recipients.split(' '):
|
for recp in recipients.split(' '):
|
||||||
self._add_recipient_string(args, hidden_recipients, recp)
|
self._add_recipient_string(args, hidden_recipients, recp)
|
||||||
## ...and now that we've proven py3k is better...
|
## ...and now that we've proven py3k is better...
|
||||||
|
|
||||||
else:
|
else:
|
||||||
log.debug("Don't know what to do with recipients: '%s'"
|
log.debug("Don't know what to do with recipients: '%s'"
|
||||||
% recipients)
|
% recipients)
|
||||||
|
|
||||||
result = self._result_map['crypt'](self)
|
result = self._result_map['crypt'](self)
|
||||||
log.debug("Got data '%s' with type '%s'."
|
log.debug("Got data '%s' with type '%s'." % (data, type(data)))
|
||||||
% (data, type(data)))
|
self._handle_io(args, data, result, passphrase=passphrase, binary=True)
|
||||||
self._handle_io(args, data, result,
|
|
||||||
passphrase=passphrase, binary=True)
|
|
||||||
log.debug("\n%s" % result.data)
|
log.debug("\n%s" % result.data)
|
||||||
|
|
||||||
if output_filename:
|
if output_filename:
|
||||||
|
|
Loading…
Reference in New Issue