Add a missing error log

This commit is contained in:
moneromooo 2015-01-08 09:02:21 +00:00
parent fe3571e603
commit f81a7a8b20

View file

@ -62,6 +62,7 @@ def Tip(nick,chan,cmd):
p.execute()
SendTo(sendto,"%s has tipped %s %s" % (nick, who, AmountToString(units)))
except Exception, e:
log_error("Tip: Error updating redis: %s" % str(e))
SendTo(sendto, "An error occured")
return
except Exception, e: