瀏覽代碼

Bugfixes and update some class references

tags/v0.1^2
Ben Kurtovic 12 年之前
父節點
當前提交
35f3075c63
共有 4 個文件被更改,包括 7 次插入5 次删除
  1. +2
    -1
      earwigbot/commands/help.py
  2. +2
    -1
      earwigbot/commands/threads.py
  3. +2
    -2
      earwigbot/irc/frontend.py
  4. +1
    -1
      earwigbot/irc/watcher.py

+ 2
- 1
earwigbot/commands/help.py 查看文件

@@ -22,8 +22,9 @@

import re

from earwigbot.classes import BaseCommand, Data
from earwigbot import commands
from earwigbot.classes import BaseCommand
from earwigbot.irc import Data

class Command(BaseCommand):
"""Displays help information."""


+ 2
- 1
earwigbot/commands/threads.py 查看文件

@@ -24,8 +24,9 @@ import threading
import re

from earwigbot import tasks
from earwigbot.classes import BaseCommand, Data, KwargParseException
from earwigbot.classes import BaseCommand
from earwigbot.config import config
from earwigbot.irc import KwargParseException

class Command(BaseCommand):
"""Manage wiki tasks from IRC, and check on thread status."""


+ 2
- 2
earwigbot/irc/frontend.py 查看文件

@@ -56,13 +56,13 @@ class Frontend(IRCConnection):
data = Data(line) # New Data instance to store info about this line

if line[1] == "JOIN":
data.nick, data.ident, data.host = sender_regex.findall(line[0])[0]
data.nick, data.ident, data.host = self.sender_regex.findall(line[0])[0]
data.chan = line[2]
# Check for 'join' hooks in our commands:
commands.check("join", data)

elif line[1] == "PRIVMSG":
data.nick, data.ident, data.host = sender_regex.findall(line[0])[0]
data.nick, data.ident, data.host = self.sender_regex.findall(line[0])[0]
data.msg = " ".join(line[3:])[1:]
data.chan = line[2]



+ 1
- 1
earwigbot/irc/watcher.py 查看文件

@@ -42,7 +42,7 @@ class Watcher(IRCConnection):
def __init__(self, frontend=None):
self.logger = logging.getLogger("earwigbot.watcher")
cf = config.irc["watcher"]
base = super(Frontend, self)
base = super(Watcher, self)
base.__init__(cf["host"], cf["port"], cf["nick"], cf["ident"],
cf["realname"], self.logger)
self.frontend = frontend


Loading…
取消
儲存