examples: doc strings

* Fixed minor errors in two doc strings.
This commit is contained in:
Ben McGinnes 2018-03-22 01:24:52 +11:00
parent 1fdd1f306d
commit 6fa2a34428
2 changed files with 4 additions and 2 deletions

View File

@ -31,7 +31,8 @@ import sys
Encrypts a file to a specified key. If entering both the key and the filename 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. 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: if len(sys.argv) > 3:

View File

@ -31,7 +31,8 @@ import sys
Signs a file with a specified key. If entering both the key and the filename 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. 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: if len(sys.argv) > 3: