We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a733936 commit 0fe4d51Copy full SHA for 0fe4d51
tickets/common/utils.py
@@ -202,7 +202,9 @@ async def close_ticket(
202
203
if not use_exporter:
204
if msg.content:
205
- buffer.write(f"{msg.created_at.strftime('%Y-%m-%d %H:%M:%S')} - {msg.author.name}: {msg.content}\n")
+ buffer.write(
206
+ f"{msg.created_at.strftime('%m-%d-%Y %I:%M:%S %p')} - {msg.author.name}: {msg.content}\n"
207
+ )
208
if att:
209
buffer.write(_("Files Uploaded:\n"))
210
for i in att:
0 commit comments