Change to hasattr

This commit is contained in:
Enno G 2019-07-22 20:51:49 +02:00
parent 06d5568a03
commit 5bb5f9f05b
No known key found for this signature in database
GPG key ID: E1402A43C854A672

View file

@ -38,7 +38,7 @@ class TelegramBot(Bot):
"Sending Photos is not supported for privacy reasons. Can "
"you describe it as text instead?")
continue
if "text" in update.message:
if hasattr(update.message, 'text'):
tb.send_message(
update.message.sender.id,
"We only support text only reporting for privacy reasons."