Procházet zdrojové kódy

str->int key conversion no longer necessary

tags/v0.1^2
Ben Kurtovic před 12 roky
rodič
revize
76d1af164c
2 změnil soubory, kde provedl 0 přidání a 9 odebrání
  1. +0
    -1
      .gitignore
  2. +0
    -8
      earwigbot/wiki/functions.py

+ 0
- 1
.gitignore Zobrazit soubor

@@ -2,7 +2,6 @@
*.pyc

# Ignore bot-specific config file:
config.json
config.yml

# Ignore logs directory:


+ 0
- 8
earwigbot/wiki/functions.py Zobrazit soubor

@@ -116,14 +116,6 @@ def _get_site_object_from_dict(name, d):
user_agent = user_agent.replace("$1", earwigbot.__version__)
user_agent = user_agent.replace("$2", platform.python_version())

for key, value in namespaces.items(): # Convert string keys to integers
del namespaces[key]
try:
namespaces[int(key)] = value
except ValueError: # Data is broken, ignore it
namespaces = None
break

return Site(name=name, project=project, lang=lang, base_url=base_url,
article_path=article_path, script_path=script_path, sql=sql,
namespaces=namespaces, login=login, cookiejar=cookiejar,


Načítá se…
Zrušit
Uložit