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-12-28 20:03:18 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-28 20:03:18 (GMT)
commitef443c2bd7e8e5581d6634a6a14b803b21e520ae (patch)
tree8ad01a7de2cc87826759875a4c1e196118b8e3b6 /devbot/config.py
parentc9476f1837246cfe59c7a8e262e404def7c6f533 (diff)
Move all checks into python code
So that they can be logged.
Diffstat (limited to 'devbot/config.py')
-rw-r--r--devbot/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/config.py b/devbot/config.py
index e3782f2..fe96f17 100644
--- a/devbot/config.py
+++ b/devbot/config.py
@@ -34,7 +34,7 @@ class Module:
self.auto_install = info.get("auto-install", False)
self.options = info.get("options", [])
self.options_evaluated = info.get("options_evaluated", [])
- self.has_tests = info.get("has_tests", False)
+ self.has_checks = info.get("has_checks", False)
self.distribute = info.get("distribute", False)
if get_pref("BUILD_IN_SOURCE"):