aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/examples/howto/keycount.py
diff options
context:
space:
mode:
authorBen McGinnes <[email protected]>2018-03-20 03:55:05 +0000
committerBen McGinnes <[email protected]>2018-03-20 03:55:05 +0000
commit96d0395bccbbff91f73c06cb7bd6c131f04b8a9a (patch)
treec6eb37fd45cd12f1830f714ba88a5cf020c5d483 /lang/python/examples/howto/keycount.py
parentexample: decrypt file (diff)
downloadgpgme-96d0395bccbbff91f73c06cb7bd6c131f04b8a9a.tar.gz
gpgme-96d0395bccbbff91f73c06cb7bd6c131f04b8a9a.zip
example: keycount
* Fixed missing parenthesis.
Diffstat (limited to 'lang/python/examples/howto/keycount.py')
-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))