summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen McGinnes <ben@adversary.org>2018-03-20 14:55:05 +1100
committerBen McGinnes <ben@adversary.org>2018-03-20 14:55:05 +1100
commit96d0395bccbbff91f73c06cb7bd6c131f04b8a9a (patch)
treec6eb37fd45cd12f1830f714ba88a5cf020c5d483
parent51258975d763c9471859d635e6080c2ec02e8647 (diff)
downloadgpgme-96d0395bccbbff91f73c06cb7bd6c131f04b8a9a.tar.gz
example: keycount
* Fixed missing parenthesis.
-rwxr-xr-xlang/python/examples/howto/keycount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/python/examples/howto/keycount.py b/lang/python/examples/howto/keycount.py
index 7dd5e778..8e25454c 100755
--- a/lang/python/examples/howto/keycount.py
+++ b/lang/python/examples/howto/keycount.py
@@ -39,4 +39,4 @@ pubnum = len(publist)
print("""
Number of secret keys: {0}
Number of public keys: {1}
-""".format(secnum, pubnum)
+""".format(secnum, pubnum))