aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Ben Soyka <[email protected]>2021-11-27 16:18:26 -0700
committerGravatar Ben Soyka <[email protected]>2021-11-27 16:18:26 -0700
commit7e8ecb4f2acc7e1e88d4c053091926c07965293d (patch)
treeea8eb73dfd9f6527479f912fb220673ff4aa7a63
parentMerge pull request #1980 from python-discord/bsoyka/rules-bug (diff)
Add missing space in text shortening placeholder
-rw-r--r--bot/exts/info/site.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/site.py b/bot/exts/info/site.py
index bcb04c909..c622441bd 100644
--- a/bot/exts/info/site.py
+++ b/bot/exts/info/site.py
@@ -126,7 +126,7 @@ class Site(Cog):
# Remove duplicates and sort the rule indices
rules = sorted(set(rules))
invalid = shorten(', '.join(str(index) for index in rules if index
- < 1 or index > len(full_rules)), 50, placeholder='...')
+ < 1 or index > len(full_rules)), 50, placeholder=' ...')
if invalid:
await ctx.send(f":x: Invalid rule indices: {invalid}")