diff options
author | Julien Dessaux | 2011-09-30 22:44:02 +0200 |
---|---|---|
committer | Julien Dessaux | 2011-09-30 22:44:02 +0200 |
commit | 09a7af70918676912077968097e5f552cc09cb81 (patch) | |
tree | 20d5a254174e7af4bca1ac2cadaced5f7589f5af /Hsbot | |
parent | Implemented the quote start function. (diff) | |
download | hsbot-09a7af70918676912077968097e5f552cc09cb81.tar.gz hsbot-09a7af70918676912077968097e5f552cc09cb81.tar.bz2 hsbot-09a7af70918676912077968097e5f552cc09cb81.zip |
cosmetic
Diffstat (limited to 'Hsbot')
-rw-r--r-- | Hsbot/Plugin/Quote.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Hsbot/Plugin/Quote.hs b/Hsbot/Plugin/Quote.hs index fae5a4e..bb8b531 100644 --- a/Hsbot/Plugin/Quote.hs +++ b/Hsbot/Plugin/Quote.hs @@ -235,7 +235,7 @@ quoteDeleteElt quoteDB msg quoteID eltID = do _ <- update' quoteDB (SetQuote quoteID newQuote') answerMsg msg $ sender ++ ": Appended to quote " ++ show quoteID ++ "." Just False -> answerMsg msg $ sender ++ ": Someone else is editing this quote right now." - Nothing -> answerMsg msg $ sender ++ ":quoteId not found." + Nothing -> answerMsg msg $ sender ++ ": quoteId not found." where sender = getSender msg channel = getChannel msg |