python: Fix simple example.

* lang/python/examples/simple.py: Flush stdout, encode name as
UTF-8 before passing it to GPGME.

Signed-off-by: Justus Winter <justus@gnupg.org>
This commit is contained in:
Justus Winter 2016-05-11 13:51:40 +02:00
parent a29babd07c
commit bbeee5e1a0

View File

@ -36,8 +36,9 @@ c.set_armor(1)
# Set up the recipients.
sys.stdout.write("Enter name of your recipient: ")
sys.stdout.flush()
name = sys.stdin.readline().strip()
c.op_keylist_start(name, 0)
c.op_keylist_start(name.encode(), 0)
r = c.op_keylist_next()
if r == None: