Skip to content
This repository has been archived by the owner on Aug 7, 2019. It is now read-only.

Commit

Permalink
Fix banned word removal typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Technetium1 authored Apr 18, 2018
1 parent 95d34eb commit a65b320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tinybot.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ def cmd_handler(self, msg):
self.buddy_db.add_bad_word(cmd_arg)
self.handle_msg('%s was added to banned words.' % cmd_arg)

elif cmd == prefix + '-bandword':
elif cmd == prefix + '-banword':
self.buddy_db.remove_bad_word(cmd_arg)
self.handle_msg('%s was removed from banned words.' % cmd_arg)

Expand Down

0 comments on commit a65b320

Please sign in to comment.