We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c36533 commit d09b12aCopy full SHA for d09b12a
1 file changed
plugins/factoids.py
@@ -187,6 +187,6 @@ def listfactoids(notice, chan):
187
def listdetailedfactoids(chan):
188
"""- lists all available factoids with their respective data"""
189
headers = ("Command", "Output")
190
- data = [(fact[0], fact[1]) for fact in sorted(factoid_cache[chan].items())]
+ data = [(FACTOID_CHAR + fact[0], fact[1]) for fact in sorted(factoid_cache[chan].items())]
191
table = gen_markdown_table(headers, data).encode('UTF-8')
192
return web.paste(table, "md", "hastebin")
0 commit comments