exclam: Fix indentation
patch fe0c125aa83d95b5472c0bc599e883c9b47213f6
Author: E. Bosch <presidev@AT@gmail.com>
Date: Tue Jul 11 23:54:41 CEST 2023
* exclam: Fix indentation
diff -rN -u old-irgramd/exclam.py new-irgramd/exclam.py
--- old-irgramd/exclam.py 2024-05-18 08:36:20.362239936 +0200
+++ new-irgramd/exclam.py 2024-05-18 08:36:20.362239936 +0200
@@ -40,10 +40,10 @@
if not help:
id, chk_msg = await self.check_msg(cid)
if chk_msg is not None:
- self.tmp_tg_msg = await self.tg.telegram_client.send_message(self.tmp_telegram_id, msg, reply_to=id)
- reply = True
+ self.tmp_tg_msg = await self.tg.telegram_client.send_message(self.tmp_telegram_id, msg, reply_to=id)
+ reply = True
else:
- reply = ('Unknown message to reply',)
+ reply = ('Unknown message to reply',)
else: # HELP.brief or HELP.desc (first line)
reply = (' !re Reply to a message',)
if help == HELP.desc: # rest of HELP.desc
@@ -59,17 +59,17 @@
if not help:
id, ed_msg = await self.check_msg(cid)
if ed_msg is not None:
- try:
- self.tmp_tg_msg = await self.tg.telegram_client.edit_message(ed_msg, new_msg)
- except MessageNotModifiedError:
- self.tmp_tg_msg = ed_msg
- reply = True
- except MessageAuthorRequiredError:
- reply = ('Not the author of the message to edit',)
- else:
- reply = True
+ try:
+ self.tmp_tg_msg = await self.tg.telegram_client.edit_message(ed_msg, new_msg)
+ except MessageNotModifiedError:
+ self.tmp_tg_msg = ed_msg
+ reply = True
+ except MessageAuthorRequiredError:
+ reply = ('Not the author of the message to edit',)
+ else:
+ reply = True
else:
- reply = ('Unknown message to edit',)
+ reply = ('Unknown message to edit',)
else: # HELP.brief or HELP.desc (first line)
reply = (' !ed Edit a message',)
if help == HELP.desc: # rest of HELP.desc