Selaa lähdekoodia

Quick patch to support !link >nick syntax.

tags/v0.2
Ben Kurtovic 9 vuotta sitten
vanhempi
commit
de2daac51c
1 muutettua tiedostoa jossa 4 lisäystä ja 0 poistoa
  1. +4
    -0
      earwigbot/commands/link.py

+ 4
- 0
earwigbot/commands/link.py Näytä tiedosto

@@ -44,6 +44,10 @@ class Link(Command):
self.reply(data, links.encode("utf8"))

elif data.command == "link":
if data.args and data.args[0].startswith(">"):
nick = data.args.pop(0)[1:]
data._nick = nick # XXX: hack - should be generally supported

if not data.args:
if data.chan in self.last:
links = u" , ".join(self.parse_line(self.last[data.chan]))


Ladataan…
Peruuta
Tallenna