Browse Source

Import rules properly.

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
254060fb39
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      earwigbot/irc/watcher.py

+ 5
- 2
earwigbot/irc/watcher.py View File

@@ -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…
Cancel
Save