aboutsummaryrefslogtreecommitdiff
path: root/IRCBot.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-08-06 14:10:14 +0100
committerGravatar jesopo2018-08-06 14:10:14 +0100
commit8aa0a59e012702f99d2a15285602084a8e74abb8 (patch)
tree465cc05efe79a31af01cdc409142c16f63b0704c /IRCBot.py
parentMoved table-specific logic to their own "table" classes in Database.py (diff)
signature
Fix 2 typos from the database restructure
Diffstat (limited to 'IRCBot.py')
-rw-r--r--IRCBot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCBot.py b/IRCBot.py
index b57edca5..87460094 100644
--- a/IRCBot.py
+++ b/IRCBot.py
@@ -109,7 +109,7 @@ class Bot(object):
return self.database.bot_settings.find_prefix(
prefix, default)
def del_setting(self, setting):
- self.database.bot_setting.delete(setting)
+ self.database.bot_settings.delete(setting)
def run(self):
while self.running: