diff options
author | Ben McGinnes <[email protected]> | 2018-07-13 10:36:27 +0000 |
---|---|---|
committer | Ben McGinnes <[email protected]> | 2018-07-13 10:36:27 +0000 |
commit | 1bb3f8409d4bbec403bea768184a691d9d7ea42d (patch) | |
tree | 416b1397c0454b4948a4a82ca183dc829f78a0a6 | |
parent | json: Add with-sec-fprs param to export (diff) | |
download | gpgme-1bb3f8409d4bbec403bea768184a691d9d7ea42d.tar.gz gpgme-1bb3f8409d4bbec403bea768184a691d9d7ea42d.zip |
python bindings: example scripts
* Fixed incorrect mention of output prompt referencing secret keys
when the scripts are only for exporting public keys in whole or
minimised forms.
-rwxr-xr-x | lang/python/examples/howto/export-key.py | 2 | ||||
-rwxr-xr-x | lang/python/examples/howto/export-minimised-key.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/examples/howto/export-key.py b/lang/python/examples/howto/export-key.py index 6def6871..913bfce7 100755 --- a/lang/python/examples/howto/export-key.py +++ b/lang/python/examples/howto/export-key.py @@ -47,7 +47,7 @@ elif len(sys.argv) == 2: logrus = input("Enter the UID matching the key(s) to export: ") homedir = input("Enter the GPG configuration directory path (optional): ") else: - keyfile = input("Enter the path and filename to save the secret key to: ") + keyfile = input("Enter the path and filename to save the key(s) to: ") logrus = input("Enter the UID matching the key(s) to export: ") homedir = input("Enter the GPG configuration directory path (optional): ") diff --git a/lang/python/examples/howto/export-minimised-key.py b/lang/python/examples/howto/export-minimised-key.py index c2c533ee..3889adcd 100755 --- a/lang/python/examples/howto/export-minimised-key.py +++ b/lang/python/examples/howto/export-minimised-key.py @@ -47,7 +47,7 @@ elif len(sys.argv) == 2: logrus = input("Enter the UID matching the key(s) to export: ") homedir = input("Enter the GPG configuration directory path (optional): ") else: - keyfile = input("Enter the path and filename to save the secret key to: ") + keyfile = input("Enter the path and filename to save the key(s) to: ") logrus = input("Enter the UID matching the key(s) to export: ") homedir = input("Enter the GPG configuration directory path (optional): ") |