Update docstring for GPG._open_subprocess() and make _make_args() private.
parent
41219d209c
commit
671b190a91
|
@ -322,9 +322,10 @@ class GPG(object):
|
||||||
return cmd
|
return cmd
|
||||||
|
|
||||||
def _open_subprocess(self, args=None, passphrase=False):
|
def _open_subprocess(self, args=None, passphrase=False):
|
||||||
# Internal method: open a pipe to a GPG subprocess and return
|
"""Open a pipe to a GPG subprocess and return the file objects for
|
||||||
# the file objects for communicating with it.
|
communicating with it.
|
||||||
cmd = ' '.join(self.make_args(args, passphrase))
|
"""
|
||||||
|
cmd = ' '.join(self._make_args(args, passphrase))
|
||||||
if self.verbose:
|
if self.verbose:
|
||||||
print(cmd)
|
print(cmd)
|
||||||
logger.debug("%s", cmd)
|
logger.debug("%s", cmd)
|
||||||
|
|
Loading…
Reference in New Issue