2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-09-10 11:15:27 +00:00

Make PhoneNumberBanned error looking more gentle

This commit is contained in:
Dan
2018-02-01 13:41:23 +01:00
committed by GitHub
parent 214d3fe0bc
commit 00a02472f5

View File

@@ -274,7 +274,7 @@ class Client:
)
)
break
except PhoneNumberInvalid as e:
except (PhoneNumberInvalid, PhoneNumberBanned) as e:
if phone_number_invalid_raises:
raise
else:
@@ -283,9 +283,6 @@ class Client:
except FloodWait as e:
print(e.MESSAGE.format(x=e.x))
time.sleep(e.x)
except PhoneNumberBanned as e:
log.error(e, exc_info=True)
raise
except Exception as e:
log.error(e, exc_info=True)
else: