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-27 14:18:00 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-27 14:18:00 (GMT)
commita47c35f84688ea90f8ee50bc8f40b811c6b887c2 (patch)
tree992a7e13b51ebc26e615a167483291d7487ee475 /devbot/config.py
parent3e0b6b5c3a863f3a2ad035e73bf5b58968757f8f (diff)
Fix and simplify skipping modules
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 0170196..2b748e6 100644
--- a/devbot/config.py
+++ b/devbot/config.py
@@ -47,7 +47,7 @@ class Module:
return os.path.join(get_build_dir(), self.name)
def get_commit_id(self):
- return utils.get_commit_id(get_source_dir())
+ return utils.get_commit_id(self.get_source_dir())
def _ensure_dir(dir):
if not os.path.exists(dir):