Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/config.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-29 17:15:35 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-29 17:15:35 (GMT)
commit1b42be673b2cd237ce873df9f4b0b339aab9518a (patch)
treed4d7293ef51bfdbf1181a8772fa9e856207a8771 /devbot/config.py
parent2ec41693aeefe3c9ce78ff3654a11ff6bd2b7123 (diff)
Merge system-3.4 and 3.6
Diffstat (limited to 'devbot/config.py')
-rw-r--r--devbot/config.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/devbot/config.py b/devbot/config.py
index 259c4f2..513fe10 100644
--- a/devbot/config.py
+++ b/devbot/config.py
@@ -233,8 +233,6 @@ def _filter_if(item):
return eval(item["if"], globals)
def load_checks():
- version = distro.get_distro_info().system_version
-
checks = []
for file in dep_files:
path = os.path.join(config_dir, "deps", "%s.json" % file)
@@ -243,11 +241,7 @@ def load_checks():
return filter(_filter_if, checks)
def load_modules():
- version = distro.get_distro_info().system_version
-
- module_files = ["system-%s.json" % version,
- "sugar.json",
- "activities.json"]
+ global module_files
modules = []