diff options
| author | 2020-04-12 01:18:48 +0100 | |
|---|---|---|
| committer | 2020-04-12 01:18:48 +0100 | |
| commit | a24f3736b37e8de9978931dc415d702d98f46b5c (patch) | |
| tree | 2389845b2130213319c68a2ca9abf1e3a64ae9fe | |
| parent | Add a timeout to prevent the bot from being overloaded with presence updates (diff) | |
Use underscore for metric names instead of dash
| -rw-r--r-- | bot/cogs/stats.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/cogs/stats.py b/bot/cogs/stats.py index df4827ba1..d253db913 100644 --- a/bot/cogs/stats.py +++ b/bot/cogs/stats.py @@ -14,7 +14,7 @@ CHANNEL_NAME_OVERRIDES = {      Channels.staff_lounge: "staff_lounge"  } -ALLOWED_CHARS = string.ascii_letters + string.digits + "-" +ALLOWED_CHARS = string.ascii_letters + string.digits + "_"  class Stats(Cog): | 
