From 06a480b669b586e4998fb31293ca5cb2ef222fb7 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Mon, 15 Apr 2013 01:11:20 +0000 Subject: [PATCH] Get rid of useless inline comment. --- gnupg/gnupg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnupg/gnupg.py b/gnupg/gnupg.py index 017b541..966f504 100644 --- a/gnupg/gnupg.py +++ b/gnupg/gnupg.py @@ -827,7 +827,7 @@ class GPG(object): recipients = (recipients,) for recipient in recipients: args.append('--recipient "%s"' % recipient) - if armor: # create ascii-armored output - set to False for binary output + if armor: args.append('--armor') if output: # write the output to a file with the specified name if os.path.exists(output):