From 8345bf6f43c4f671124eaa1b713a7f5ac5780cbd Mon Sep 17 00:00:00 2001 From: Ben McGinnes Date: Sun, 17 May 2015 02:35:24 +1000 Subject: example email * changed joe@foo.bar to joe@example.org as it is only a matter of time before ICANN actually creates bar as a gTLD, if they haven't already. --- lang/py3-pyme/examples/delkey.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lang/py3-pyme/examples/delkey.py') 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 joe@foo.bar generated by genkey.pl script +# It deletes keys for joe@example.org 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("joe@foo.bar", 0)]: +for thekey in [x for x in c.op_keylist_all("joe@example.org", 0)]: # 1 in delete means to delete not only public but secret keys as well. c.op_delete(thekey, 1) -- cgit v1.2.3