summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen McGinnes <ben@adversary.org>2018-03-22 01:24:52 +1100
committerBen McGinnes <ben@adversary.org>2018-03-22 01:24:52 +1100
commit6fa2a344282e369e6aca8155bc77dd2c12a29414 (patch)
treed639fdf801d6231e98222c4488d6e3cc60d2f82c
parent1fdd1f306d45f6aeee91c7f016f7c37286ee3b3b (diff)
downloadgpgme-6fa2a344282e369e6aca8155bc77dd2c12a29414.tar.gz
examples: doc strings
* Fixed minor errors in two doc strings.
-rwxr-xr-xlang/python/examples/howto/encrypt-file.py3
-rwxr-xr-xlang/python/examples/howto/sign-file.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/lang/python/examples/howto/encrypt-file.py b/lang/python/examples/howto/encrypt-file.py
index 017a3421..877226d0 100755
--- a/lang/python/examples/howto/encrypt-file.py
+++ b/lang/python/examples/howto/encrypt-file.py
@@ -31,7 +31,8 @@ import sys
Encrypts a file to a specified key. If entering both the key and the filename
on the command line, the key must be entered first.
-Will produce both an ASCII armoured and GPG binary format copy of the encrypted file.
+Will produce both an ASCII armoured and GPG binary format copy of the encrypted
+file.
"""
if len(sys.argv) > 3:
diff --git a/lang/python/examples/howto/sign-file.py b/lang/python/examples/howto/sign-file.py
index 8e2cdc2d..01006df0 100755
--- a/lang/python/examples/howto/sign-file.py
+++ b/lang/python/examples/howto/sign-file.py
@@ -31,7 +31,8 @@ import sys
Signs a file with a specified key. If entering both the key and the filename
on the command line, the key must be entered first.
-Will produce both an ASCII armoured and GPG binary format copy of the encrypted file.
+Will produce both an ASCII armoured and GPG binary format copy of the signed
+file.
"""
if len(sys.argv) > 3: