Typo in src/Timers.py, 'conteext' -> 'context'

This commit is contained in:
jesopo 2018-10-13 09:16:53 +01:00
parent 381b00f2cd
commit 43d026cc9d

View file

@ -64,7 +64,7 @@ class Timers(object):
if timer.context: if timer.context:
self.context_timers[timer.context].remove(timer) self.context_timers[timer.context].remove(timer)
if not self.context_timers[timer.context]: if not self.context_timers[timer.context]:
del self.context_timers[timer.conteext] del self.context_timers[timer.context]
else: else:
self.timers.remove(timer) self.timers.remove(timer)
self.database.bot_settings.delete("timer-%s" % timer.id) self.database.bot_settings.delete("timer-%s" % timer.id)