Fixed minor snafu

This commit is contained in:
retoor 2024-11-24 07:17:50 +01:00
parent 62fd850f06
commit 403ac07661
5 changed files with 2 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -39,7 +39,7 @@ def dump():
f.write(user)
f.write(" said ")
f.write(text)
f.write(user, "```")
f.write("```")
text = (
db.get_all_posts_of_user(user).replace("\n", " ").replace(" ", " ").strip()
)
@ -57,7 +57,7 @@ def dump():
f.write(user)
f.write(" said ")
f.write(text)
f.write(user, "```")
f.write("```")
all_content += total_text
print("===Mentions of users:", "```")
users = db.get_users()