From cbc71498242d5576620dce6d4e3ce457fd9bce31 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 28 Dec 2021 04:06:45 +0300 Subject: [PATCH] Use only basic ASCII in Python example. --- example/python/tdjson_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/python/tdjson_example.py b/example/python/tdjson_example.py index daae60a30..1dadc89ea 100644 --- a/example/python/tdjson_example.py +++ b/example/python/tdjson_example.py @@ -73,7 +73,7 @@ def td_receive(): return result # another test for TDLib execute method -print(str(td_execute({'@type': 'getTextEntities', 'text': '@telegram /test_command https://telegram.org telegram.me', '@extra': ['5', 7.0, 'รค']})).encode('utf-8')) +print(str(td_execute({'@type': 'getTextEntities', 'text': '@telegram /test_command https://telegram.org telegram.me', '@extra': ['5', 7.0, 'a']})).encode('utf-8')) # start the client by sending request to it td_send({'@type': 'getAuthorizationState', '@extra': 1.01234})