X-Git-Url: http://gitweb.pimeys.fr/?p=bots%2Fparrot.git;a=blobdiff_plain;f=parrot.py;h=17d99c199e9dc70a50ff735ed9aa5e0707cc551b;hp=a507663bc0d9e6dcdbc76fd402e49e3a3910bd0d;hb=af217351af847868ad241cdf4ca0197b934d85d9;hpb=13c49d5b0a7f767598a4fab5074d729adaa11b39 diff --git a/parrot.py b/parrot.py index a507663..17d99c1 100755 --- a/parrot.py +++ b/parrot.py @@ -426,7 +426,7 @@ class Parrot(ircbot.SingleServerIRCBot): self.serv.privmsg(canal, "%s: %s" % (auteur, config.quote_display_url.encode("utf-8"))) else: # Vu que ce bot est prévu pour parser des quotes il va falloir bosser ici - match = quote_pattern.match(message) + match = self.quote_pattern.match(message) if match: d = match.groupdict() if self.quotedb.store(d["author"], d["content"]):