diff options
Diffstat (limited to 'lang/python/examples/exportimport.py')
-rwxr-xr-x | lang/python/examples/exportimport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/python/examples/exportimport.py b/lang/python/examples/exportimport.py index 8ae87a8c..d84a01c3 100755 --- a/lang/python/examples/exportimport.py +++ b/lang/python/examples/exportimport.py @@ -45,7 +45,7 @@ with gpg.Context(armor=True) as c, gpg.Data() as expkey: # of them. with gpg.Context() as c: # Note: We must not modify the key store during iteration, - # therfore, we explicitly make a list. + # therefore, we explicitly make a list. keys = list(c.keylist(user)) for k in keys: |