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:
parent
a29babd07c
commit
bbeee5e1a0
@ -36,8 +36,9 @@ c.set_armor(1)
|
|||||||
# Set up the recipients.
|
# Set up the recipients.
|
||||||
|
|
||||||
sys.stdout.write("Enter name of your recipient: ")
|
sys.stdout.write("Enter name of your recipient: ")
|
||||||
|
sys.stdout.flush()
|
||||||
name = sys.stdin.readline().strip()
|
name = sys.stdin.readline().strip()
|
||||||
c.op_keylist_start(name, 0)
|
c.op_keylist_start(name.encode(), 0)
|
||||||
r = c.op_keylist_next()
|
r = c.op_keylist_next()
|
||||||
|
|
||||||
if r == None:
|
if r == None:
|
||||||
|
Loading…
Reference in New Issue
Block a user