From 3ab9b61770e7105495e2aa6393ba3eacfbf50586 Mon Sep 17 00:00:00 2001 From: Tanuj Date: Thu, 26 Oct 2017 16:24:57 +0100 Subject: [PATCH] remove that damn comma --- 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 4ef67086..ab7ba1d4 100755 --- a/telethon_examples/print_updates.py +++ b/telethon_examples/print_updates.py @@ -11,7 +11,7 @@ from telethon.errors import SessionPasswordNeededError 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'],