Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-16 16:13:34 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-16 16:13:34 (GMT)
commitdb459593fb31ac0259616d3f1a01497ae0c78b83 (patch)
tree743853a4cda5100d436c599a9017ac0cf0bd6baf /devbot
parent2cac32f92d73eb68d261dc01c0d34314401cf79f (diff)
Print the modules we are observing
Diffstat (limited to 'devbot')
-rwxr-xr-xdevbot/autoinstall.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/devbot/autoinstall.py b/devbot/autoinstall.py
index ed94b1e..d9103e6 100755
--- a/devbot/autoinstall.py
+++ b/devbot/autoinstall.py
@@ -38,6 +38,8 @@ def changed_cb(monitor, file, other_file, event_flags, module):
def observe():
for module in config.load_modules():
if module.get("autoinstall", False):
+ print "Observing the %s module" % module["name"]
+
source_dir = config.get_module_source_dir(module)
for root, dirs, files in os.walk(source_dir):
for dir in dirs: