diff options
Diffstat (limited to '')
-rwxr-xr-x | lang/python/examples/howto/export-secret-key.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/python/examples/howto/export-secret-key.py b/lang/python/examples/howto/export-secret-key.py index 8bbe4095..e9c53fe5 100755 --- a/lang/python/examples/howto/export-secret-key.py +++ b/lang/python/examples/howto/export-secret-key.py @@ -3,6 +3,11 @@ from __future__ import absolute_import, division, unicode_literals +import gpg +import os +import os.path +import sys + # Copyright (C) 2018 Ben McGinnes <[email protected]> # # This program is free software; you can redistribute it and/or modify it under @@ -24,11 +29,6 @@ from __future__ import absolute_import, division, unicode_literals # Lesser General Public along with this program; if not, see # <http://www.gnu.org/licenses/>. -import gpg -import os -import os.path -import sys - print(""" This script exports one or more secret keys. |