From 1d250a544165956d369f53ccb7db4d68e2cb06dd Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Sun, 1 Oct 2017 11:31:26 +0200 Subject: [PATCH] Allow overriding phone on .sign_in (fix #278) --- telethon/telegram_client.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/telethon/telegram_client.py b/telethon/telegram_client.py index 810ce903..aed7ec76 100644 --- a/telethon/telegram_client.py +++ b/telethon/telegram_client.py @@ -148,9 +148,12 @@ class TelegramClient(TelegramBareClient): if phone and not code: return self.send_code_request(phone) elif code: - if self._phone is None: + if not self._phone: + self._phone = phone + if not self._phone: raise ValueError( - 'Please make sure to call send_code_request first.') + 'Please make sure to call send_code_request first.' + ) try: if isinstance(code, int):