Update docstring for GPG._open_subprocess() and make _make_args() private.

feature/documentation-builds-html
Isis Lovecruft 2013-04-15 00:53:31 +00:00
parent 41219d209c
commit 671b190a91
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 4 additions and 3 deletions

View File

@ -322,9 +322,10 @@ class GPG(object):
return cmd
def _open_subprocess(self, args=None, passphrase=False):
# Internal method: open a pipe to a GPG subprocess and return
# the file objects for communicating with it.
cmd = ' '.join(self.make_args(args, passphrase))
"""Open a pipe to a GPG subprocess and return the file objects for
communicating with it.
"""
cmd = ' '.join(self._make_args(args, passphrase))
if self.verbose:
print(cmd)
logger.debug("%s", cmd)