When you push without testing, you get burned.

This commit is contained in:
Luke Rogers 2011-11-26 04:42:05 +13:00
parent 436f7f691a
commit 2098397120

View file

@ -33,7 +33,7 @@ def remember(inp, nick='', db=None, say=None, input=None, notice=None):
append = False
try:
head, tail = bind.split(None, 1)
head, tail = inp.split(None, 1)
except ValueError:
return remember.__doc__
@ -72,7 +72,7 @@ def forget(inp, db=None):
".f <word> -- forgets the mapping that word had"
try:
head, tail = bind.split(None, 1)
head, tail = inp.split(None, 1)
except ValueError:
return remember.__doc__