aboutsummaryrefslogtreecommitdiffstats
path: root/lang/py3-pyme/examples/delkey.py
diff options
context:
space:
mode:
authorBen McGinnes <[email protected]>2015-05-16 16:35:24 +0000
committerBen McGinnes <[email protected]>2015-05-16 16:35:24 +0000
commit8345bf6f43c4f671124eaa1b713a7f5ac5780cbd (patch)
tree7859f8344de280ed3d8a3260306314c2f1748735 /lang/py3-pyme/examples/delkey.py
parentUpdated string and key data (diff)
downloadgpgme-8345bf6f43c4f671124eaa1b713a7f5ac5780cbd.tar.gz
gpgme-8345bf6f43c4f671124eaa1b713a7f5ac5780cbd.zip
example email
* changed [email protected] to [email protected] as it is only a matter of time before ICANN actually creates bar as a gTLD, if they haven't already.
Diffstat (limited to '')
-rwxr-xr-xlang/py3-pyme/examples/delkey.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/py3-pyme/examples/delkey.py b/lang/py3-pyme/examples/delkey.py
index e79e1208..8bdb85b0 100755
--- a/lang/py3-pyme/examples/delkey.py
+++ b/lang/py3-pyme/examples/delkey.py
@@ -17,7 +17,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# Sample of key deletion
-# It deletes keys for [email protected] generated by genkey.pl script
+# It deletes keys for [email protected] generated by genkey.pl script
from pyme import core
@@ -29,6 +29,6 @@ core.check_version(None)
c = core.Context()
# 0 in keylist means to list not only public but secret keys as well.
-for thekey in [x for x in c.op_keylist_all("[email protected]", 0)]:
+for thekey in [x for x in c.op_keylist_all("[email protected]", 0)]:
# 1 in delete means to delete not only public but secret keys as well.
c.op_delete(thekey, 1)