From 671b190a9172439da27779f5db06ae1bae89fd52 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Mon, 15 Apr 2013 00:53:31 +0000 Subject: [PATCH] Update docstring for GPG._open_subprocess() and make _make_args() private. --- gnupg/gnupg.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnupg/gnupg.py b/gnupg/gnupg.py index 11a029c..737bf40 100644 --- a/gnupg/gnupg.py +++ b/gnupg/gnupg.py @@ -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)