diff options
author | Ben McGinnes <[email protected]> | 2015-05-16 19:07:12 +0000 |
---|---|---|
committer | Ben McGinnes <[email protected]> | 2015-05-16 19:07:12 +0000 |
commit | c39cea7a07cec9ab34cd2026f47b6fba80fea3c8 (patch) | |
tree | 904d65a0b28187cc4826a0e139562ff57133952b /lang/py3-pyme/examples/t-edit.py | |
parent | No change, note added to explain why. (diff) | |
download | gpgme-c39cea7a07cec9ab34cd2026f47b6fba80fea3c8.tar.gz gpgme-c39cea7a07cec9ab34cd2026f47b6fba80fea3c8.zip |
Byte encoding
* More string updates.
* verifydetails.py still fails, but as Bernhard is still contactable, it
might be worth him checking on it instead.
Diffstat (limited to 'lang/py3-pyme/examples/t-edit.py')
-rw-r--r-- | lang/py3-pyme/examples/t-edit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/py3-pyme/examples/t-edit.py b/lang/py3-pyme/examples/t-edit.py index 24d36d32..6c533429 100644 --- a/lang/py3-pyme/examples/t-edit.py +++ b/lang/py3-pyme/examples/t-edit.py @@ -51,7 +51,7 @@ else: c = Context() c.set_passphrase_cb(lambda x,y,z: "abc") out = Data() - c.op_keylist_start("Alpha", 0) + c.op_keylist_start(b"Alpha", 0) key = c.op_keylist_next() c.op_edit(key, KeyEditor().edit_fnc, out, out) print("[-- Last response --]") |