ChaterJee 0.5.8__tar.gz → 0.5.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {chaterjee-0.5.8 → chaterjee-0.5.9}/ChaterJee/ChaterJee.py +3 -2
- {chaterjee-0.5.8 → chaterjee-0.5.9}/ChaterJee.egg-info/PKG-INFO +1 -1
- {chaterjee-0.5.8 → chaterjee-0.5.9}/PKG-INFO +1 -1
- {chaterjee-0.5.8 → chaterjee-0.5.9}/setup.py +1 -1
- {chaterjee-0.5.8 → chaterjee-0.5.9}/ChaterJee/__init__.py +0 -0
- {chaterjee-0.5.8 → chaterjee-0.5.9}/ChaterJee.egg-info/SOURCES.txt +0 -0
- {chaterjee-0.5.8 → chaterjee-0.5.9}/ChaterJee.egg-info/dependency_links.txt +0 -0
- {chaterjee-0.5.8 → chaterjee-0.5.9}/ChaterJee.egg-info/requires.txt +0 -0
- {chaterjee-0.5.8 → chaterjee-0.5.9}/ChaterJee.egg-info/top_level.txt +0 -0
- {chaterjee-0.5.8 → chaterjee-0.5.9}/README.md +0 -0
- {chaterjee-0.5.8 → chaterjee-0.5.9}/setup.cfg +0 -0
@@ -149,11 +149,12 @@ class ChatLogs:
|
|
149
149
|
elif logDICT is not None:
|
150
150
|
self.txt = self.txt + '\n\n'
|
151
151
|
for key, value in logDICT.items():
|
152
|
-
self.txt = self.txt + f"{key}
|
152
|
+
self.txt = self.txt + f"*{key}*: {value}\n"
|
153
153
|
|
154
154
|
await context.bot.sendChatAction(chat_id=self.CHATID, action="typing")
|
155
155
|
msg = await update.message.reply_text(
|
156
|
-
self.txt, reply_markup=ReplyKeyboardRemove()
|
156
|
+
self.txt, reply_markup=ReplyKeyboardRemove(),
|
157
|
+
parse_mode='Markdown'
|
157
158
|
)
|
158
159
|
self.smsID.append(msg.message_id)
|
159
160
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|