Make a logger statement more explicit.

feature/documentation-builds-html
Isis Lovecruft 2013-04-15 00:54:25 +00:00
parent 671b190a91
commit 9ce776116f
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ class GPG(object):
cmd = ' '.join(self._make_args(args, passphrase))
if self.verbose:
print(cmd)
logger.debug("%s", cmd)
logger.debug("_open_subprocess(): %s", cmd)
return Popen(cmd, shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE)
def _read_response(self, stream, result):