From 9f9da6adda2bf3fb596d6f9b9c6603be1f0f7a80 Mon Sep 17 00:00:00 2001 From: Tanuj Date: Tue, 24 Oct 2017 21:08:44 +0100 Subject: [PATCH] Remove comma (#376) --- telethon_examples/print_updates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telethon_examples/print_updates.py b/telethon_examples/print_updates.py index e315ff98..c90302e4 100755 --- a/telethon_examples/print_updates.py +++ b/telethon_examples/print_updates.py @@ -10,7 +10,7 @@ from os import environ def main(): session_name = environ.get('TG_SESSION','session') - user_phone = environ['TG_PHONE'], + user_phone = environ['TG_PHONE'] client = TelegramClient(session_name, int(environ['TG_API_ID']), environ['TG_API_HASH'],