Browse Source

blacklist defo fixed this time

tags/v1.7.0
Roxie Gibson 6 years ago
parent
commit
6296d7c073
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      roxbot/settings/settings.py

+ 1
- 1
roxbot/settings/settings.py View File

@@ -87,7 +87,7 @@ class Settings:
with open("roxbot/blacklist.txt", "w") as fp:
for user in mentions:
for line in lines:
if user.id + "\n" != line:
if str(user.id) + "\n" != line:
fp.write(line)
else:
fp.write("")

Loading…
Cancel
Save