diff options
Diffstat (limited to '')
-rwxr-xr-x | lang/py3-pyme/examples/delkey.py | 4 |
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) |