Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-09 15:57:10 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-09 15:57:10 (GMT)
commit66e1d05224407280cb4ae20215ea2baca81db92b (patch)
tree934cb8072c5b8109774ce985ded4f0447196f938
parent9ae7851890c5b1a60f59d298bfcd57f938de63e8 (diff)
Append the activities logs, don't overwrite
-rw-r--r--devbot/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/run.py b/devbot/run.py
index 9da5873..bbb1576 100644
--- a/devbot/run.py
+++ b/devbot/run.py
@@ -76,7 +76,7 @@ def collect_logs(source_path):
with open(path) as f:
logs[filename] = f.read()
- with open(config.log_path, "w") as f:
+ with open(config.log_path, "a") as f:
for filename, log in logs.items():
f.write("\n===== %s =====\n\n%s" % (filename, log))