mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Improve the error messages returned in a few "except" blocks.
This commit is contained in:
parent
615ed5c34b
commit
e39a8c4237
@ -109,7 +109,7 @@ class Todo(callbacks.Privmsg):
|
||||
try:
|
||||
taskid = int(taskid)
|
||||
except ValueError, e:
|
||||
irc.error(msg, 'Invalid task id: %s' % e)
|
||||
irc.error(msg, '%r is an invalid task id' % taskid)
|
||||
return
|
||||
cursor = self.db.cursor()
|
||||
cursor.execute("""SELECT priority, added_at, task FROM todo
|
||||
@ -156,7 +156,7 @@ class Todo(callbacks.Privmsg):
|
||||
try:
|
||||
priority = int(arg)
|
||||
except ValueError, e:
|
||||
irc.error(msg, 'Invalid priority: %s' % e)
|
||||
irc.error(msg, '%r is an invalid priority' % arg)
|
||||
return
|
||||
text = privmsgs.getArgs(rest, needed=1)
|
||||
cursor = self.db.cursor()
|
||||
@ -217,7 +217,8 @@ class Todo(callbacks.Privmsg):
|
||||
try:
|
||||
r = utils.perlReToPythonRe(arg)
|
||||
except ValueError, e:
|
||||
irc.error(msg, 'Invalid regexp: %s' % e)
|
||||
irc.error(msg, '%r is not a valid regular expression' %
|
||||
arg)
|
||||
return
|
||||
def p(s, r=r):
|
||||
return int(bool(r.search(s)))
|
||||
|
Loading…
Reference in New Issue
Block a user