Browse Source

Fixing references to the config file

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
8f193c9953
3 changed files with 4 additions and 4 deletions
  1. +1
    -1
      earwigbot/config.py
  2. +1
    -1
      earwigbot/runner.py
  3. +2
    -2
      earwigbot/wiki/functions.py

+ 1
- 1
earwigbot/config.py View File

@@ -110,7 +110,7 @@ class _BotConfig(object):
filename = self._config_path filename = self._config_path
with open(filename, 'r') as fp: with open(filename, 'r') as fp:
try: try:
self._data = yml.load(fp)
self._data = yaml.load(fp)
except yaml.YAMLError as error: except yaml.YAMLError as error:
print "Error parsing config file {0}:".format(filename) print "Error parsing config file {0}:".format(filename)
print error print error


+ 1
- 1
earwigbot/runner.py View File

@@ -44,7 +44,7 @@ def run():
from earwigbot import main from earwigbot import main


root_dir = raw_input() root_dir = raw_input()
config_path = path.join(root_dir, "config.json")
config_path = path.join(root_dir, "config.yml")
log_dir = path.join(root_dir, "logs") log_dir = path.join(root_dir, "logs")
is_encrypted = config.load(config_path, log_dir) is_encrypted = config.load(config_path, log_dir)
if is_encrypted: if is_encrypted:


+ 2
- 2
earwigbot/wiki/functions.py View File

@@ -63,8 +63,8 @@ def _get_cookiejar():
one is returned every time. one is returned every time.


The .cookies file is located in the project root, same directory as The .cookies file is located in the project root, same directory as
config.json and earwigbot.py. If it doesn't exist, we will create the file
and set it to be readable and writeable only by us. If it exists but the
config.yml and bot.py. If it doesn't exist, we will create the file and set
it to be readable and writeable only by us. If it exists but the
information inside is bogus, we will ignore it. information inside is bogus, we will ignore it.


This is normally called by _get_site_object_from_dict() (in turn called by This is normally called by _get_site_object_from_dict() (in turn called by


Loading…
Cancel
Save