mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-22 09:26:37 +03:00
Avoid crash on certain terminals (workaround for #70)
This commit is contained in:
parent
49a76f23f5
commit
db79ff08c7
|
@ -13,7 +13,11 @@ def print_title(title):
|
|||
# Clear previous window
|
||||
print('\n')
|
||||
print('=={}=='.format('=' * len(title)))
|
||||
try:
|
||||
print('= {} ='.format(title))
|
||||
except UnicodeEncodeError:
|
||||
# Issue #70, some consoles lack support for certain characters
|
||||
print('= {} ='.format('?' * len(title)))
|
||||
print('=={}=='.format('=' * len(title)))
|
||||
|
||||
|
||||
|
@ -77,13 +81,16 @@ class InteractiveTelegramClient(TelegramClient):
|
|||
|
||||
i = None
|
||||
while i is None:
|
||||
try:
|
||||
print_title('Dialogs window')
|
||||
|
||||
# Display them so the user can choose
|
||||
for i, entity in enumerate(entities):
|
||||
i += 1 # 1-based index for normies
|
||||
try:
|
||||
print('{}. {}'.format(i, get_display_name(entity)))
|
||||
except UnicodeEncodeError:
|
||||
# Issue #70, some consoles lack support for certain characters
|
||||
print('{}. {}'.format(i, '(could not render name)'))
|
||||
|
||||
# Let the user decide who they want to talk to
|
||||
print()
|
||||
|
@ -99,11 +106,11 @@ class InteractiveTelegramClient(TelegramClient):
|
|||
self.log_out()
|
||||
return
|
||||
|
||||
try:
|
||||
i = int(i if i else 0) - 1
|
||||
# Ensure it is inside the bounds, otherwise set to None and retry
|
||||
if not 0 <= i < dialog_count:
|
||||
i = None
|
||||
|
||||
except ValueError:
|
||||
i = None
|
||||
|
||||
|
@ -190,8 +197,7 @@ class InteractiveTelegramClient(TelegramClient):
|
|||
print('Profile picture downloaded to {}'.format(
|
||||
output))
|
||||
else:
|
||||
print('"{}" does not seem to have a profile picture.'
|
||||
.format(get_display_name(entity)))
|
||||
print('No profile picture found for this user.')
|
||||
|
||||
# Send chat message (if any)
|
||||
elif msg:
|
||||
|
@ -254,6 +260,7 @@ class InteractiveTelegramClient(TelegramClient):
|
|||
|
||||
@staticmethod
|
||||
def update_handler(update_object):
|
||||
try:
|
||||
if type(update_object) is UpdateShortMessage:
|
||||
if update_object.out:
|
||||
print('You sent {} to user #{}'.format(update_object.message,
|
||||
|
@ -270,3 +277,7 @@ class InteractiveTelegramClient(TelegramClient):
|
|||
print('[Chat #{}, user #{} sent {}]'.format(
|
||||
update_object.chat_id, update_object.from_id,
|
||||
update_object.message))
|
||||
except UnicodeEncodeError:
|
||||
# Issue #70, some consoles lack support for certain characters
|
||||
print('(Could not print update since it contains '
|
||||
'characters your terminal does not support)')
|
||||
|
|
Loading…
Reference in New Issue
Block a user