Spaces:
Running
Running
Captain Ezio
commited on
Commit
·
277bcfe
1
Parent(s):
b8484bd
Looks good
Browse files- Powers/plugins/info.py +3 -1
Powers/plugins/info.py
CHANGED
@@ -229,7 +229,9 @@ async def chat_info_func(c: Gojo, message: Message):
|
|
229 |
if chat.isnumeric():
|
230 |
chat = int(chat)
|
231 |
except Exception as e:
|
232 |
-
return await message.reply_text(
|
|
|
|
|
233 |
|
234 |
m = await message.reply_text(
|
235 |
f"Fetching chat info of chat **{message.chat.title}**....."
|
|
|
229 |
if chat.isnumeric():
|
230 |
chat = int(chat)
|
231 |
except Exception as e:
|
232 |
+
return await message.reply_text(
|
233 |
+
f"Got and exception {e}\n**Usage:**/chinfo [USERNAME|ID]"
|
234 |
+
)
|
235 |
|
236 |
m = await message.reply_text(
|
237 |
f"Fetching chat info of chat **{message.chat.title}**....."
|