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>2013-04-24 11:38:31 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-04-24 11:38:31 (GMT)
commit2f01b12431aa77910e554da41f87010bd014b233 (patch)
tree8bf1ebe534ee1bf08baf290b8f001e63497d57c5 /devbot/config.py
parentf33fb2782f8f6e5e0032a14f4eb8c7040a997c5d (diff)
Fix testsHEADmaster
Diffstat (limited to 'devbot/config.py')
-rw-r--r--devbot/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/devbot/config.py b/devbot/config.py
index d27a0cf..69e37e4 100644
--- a/devbot/config.py
+++ b/devbot/config.py
@@ -52,8 +52,8 @@ class Module:
source_dir = self.get_source_dir()
if os.path.exists(os.path.join(source_dir, "setup.py")):
return "activity"
- elif os.path.exists(os.path.join(source_dir, "autogen.sh")) or \
- os.path.exists(os.path.join(source_dir, "configure")):
+ elif (os.path.exists(os.path.join(source_dir, "autogen.sh")) or
+ os.path.exists(os.path.join(source_dir, "configure"))):
return "autotools"
else:
print("The source directory has unexpected content, please "