瀏覽代碼

Import rules properly.

tags/v0.1^2
Ben Kurtovic 12 年之前
父節點
當前提交
254060fb39
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. +5
    -2
      earwigbot/irc/watcher.py

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

@@ -88,8 +88,11 @@ class Watcher(IRCConnection):
# Set a default RC process hook that does nothing:
self._process_hook = lambda bot, rc: ()

path = os.path.join(self.bot.config.root_dir, "rules.py")
f, path, desc = imp.find_module("rules", [path])
path = self.bot.config.root_dir
try:
f, path, desc = imp.find_module("rules", [path])
except ImportError:
return
try:
module = imp.load_module(name, f, path, desc)
except Exception:


Loading…
取消
儲存