parent
7422250c21
commit
2fd0c42804
|
@ -61,13 +61,13 @@ def state_processing_exit(app, cfg):
|
|||
"""Upload picture to Telegram chat"""
|
||||
if hasattr(app, "telegram_client"):
|
||||
chat_id = cfg.get(SECTION, "telegram_chat_id").strip('"')
|
||||
upload_path = os.path.basename(app.previous_picture_file)
|
||||
# upload_path = os.path.basename(app.previous_picture_file)
|
||||
message = cfg.get(SECTION, "telegram_message")
|
||||
try:
|
||||
response = app.telegram_client.send_photo(
|
||||
chat_id=chat_id,
|
||||
caption=message,
|
||||
photo=app.previous_picture_file,
|
||||
photo=open(app.previous_picture_file, 'rb'),
|
||||
parse_mode=telegram.ParseMode.MARKDOWN,
|
||||
)
|
||||
LOGGER.info("File uploaded to Telegram chat: " + response)
|
||||
|
|
Loading…
Reference in New Issue