aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Numerlor <[email protected]>2021-08-14 16:59:50 +0200
committerGravatar Numerlor <[email protected]>2021-08-14 16:59:50 +0200
commitc9e85dd5b7104bc652861c1d9623ce4da4122ae8 (patch)
tree28ea801ba885b0f24078732d488fbc84096cd3d1
parentUse new Tags cog structure in source.py (diff)
use an empty string as the initial group value
-rw-r--r--bot/exts/info/tags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py
index 8dcfa279e..68ab5f6bb 100644
--- a/bot/exts/info/tags.py
+++ b/bot/exts/info/tags.py
@@ -327,7 +327,7 @@ class Tags(Cog):
return group + name
result_lines = []
- current_group = object()
+ current_group = ""
group_accessible = True
for identifier, tag in sorted(self.tags.items(), key=tag_sort_key):