Skip to content

Commit

Permalink
[V2 BetterMod] Fixed wrong character used in indices
Browse files Browse the repository at this point in the history
Merge of pull request #20 by @Kowlin
  • Loading branch information
Kowlin authored and laggron42 committed May 22, 2018
1 parent adc6d9e commit f5bcb41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bettermod/bettermod.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ async def bmodset(self, ctx):
setting = self.settings[server.id]
l_warn_embed_softban = 'None' if 'warning_embed_softban' in setting['thumbnail'] is False else setting['thumbnail']['warning_embed_softban']
l_colour_embed_softban = 'None' if 'warning_embed_softban' in setting['colour'] is False else setting['colour']['warning_embed_softban']
l_channel_embed_softban = 'None' if 'softban_warn' in setting['channels'] is False else setting['channels']['softban_warn']
l_channel_embed_softban = 'None' if 'softban-warn' in setting['channels'] is False else setting['channels']['softban-warn']

message = """Current Bettermod's settings on this server:
Expand Down

0 comments on commit f5bcb41

Please sign in to comment.