main
Dídac Sabatés 2022-06-13 20:36:19 +02:00
parent 5bc9459619
commit 72207d58f8
1 changed files with 1 additions and 2 deletions

View File

@ -61,7 +61,6 @@ def state_processing_exit(app, cfg):
"""Upload picture to Telegram chat""" """Upload picture to Telegram chat"""
if hasattr(app, "telegram_client"): if hasattr(app, "telegram_client"):
chat_id = cfg.get(SECTION, "telegram_chat_id").strip('"') chat_id = cfg.get(SECTION, "telegram_chat_id").strip('"')
# upload_path = os.path.basename(app.previous_picture_file)
message = cfg.get(SECTION, "telegram_message") message = cfg.get(SECTION, "telegram_message")
try: try:
response = app.telegram_client.send_photo( response = app.telegram_client.send_photo(
@ -70,6 +69,6 @@ def state_processing_exit(app, cfg):
photo=open(app.previous_picture_file, 'rb'), photo=open(app.previous_picture_file, 'rb'),
parse_mode=telegram.ParseMode.MARKDOWN, parse_mode=telegram.ParseMode.MARKDOWN,
) )
LOGGER.info("File uploaded to Telegram chat: " + response) LOGGER.info("File uploaded to Telegram chat: " + str(response))
except TelegramError as e: except TelegramError as e:
LOGGER.error(e) LOGGER.error(e)