twisted/demo.py: fix receive, code must be unicode
This commit is contained in:
parent
6e8a1d8adb
commit
d0a7da3a63
|
@ -28,7 +28,7 @@ if sys.argv[1] == "send":
|
||||||
print("error sending text: %r" % (them_d,))
|
print("error sending text: %r" % (them_d,))
|
||||||
d.addCallback(_got_data)
|
d.addCallback(_got_data)
|
||||||
elif sys.argv[1] == "receive":
|
elif sys.argv[1] == "receive":
|
||||||
code = sys.argv[2]
|
code = sys.argv[2].decode("utf-8")
|
||||||
w.set_code(code)
|
w.set_code(code)
|
||||||
d = w.get_data()
|
d = w.get_data()
|
||||||
def _got_data(them_bytes):
|
def _got_data(them_bytes):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user