Update plugins/quote.py

This commit is contained in:
lukeroge 2012-02-23 10:41:54 +13:00
parent a8f754ddc1
commit 7f53bdcb49

View file

@ -32,8 +32,8 @@ def add_quote(db, chan, nick, add_nick, msg):
(chan, nick, add_nick, msg, time.time()))
db.commit()
except db.IntegrityError:
return "message already stored, doing nothing."
return "quote added."
return "Message already stored, doing nothing."
return "Quote added."
def del_quote(db, chan, nick, add_nick, msg):
"""Deletes a quote from a nick"""