diff options
author | Ben McGinnes <[email protected]> | 2018-03-20 03:55:05 +0000 |
---|---|---|
committer | Ben McGinnes <[email protected]> | 2018-03-20 03:55:05 +0000 |
commit | 96d0395bccbbff91f73c06cb7bd6c131f04b8a9a (patch) | |
tree | c6eb37fd45cd12f1830f714ba88a5cf020c5d483 /lang/python/examples/howto | |
parent | example: decrypt file (diff) | |
download | gpgme-96d0395bccbbff91f73c06cb7bd6c131f04b8a9a.tar.gz gpgme-96d0395bccbbff91f73c06cb7bd6c131f04b8a9a.zip |
example: keycount
* Fixed missing parenthesis.
Diffstat (limited to '')
-rwxr-xr-x | lang/python/examples/howto/keycount.py | 2 |
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)) |