Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-05 17:43:41 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-05 17:43:41 (GMT)
commitc3e4363f8d22afba7d9af4134cfb850c8b93425b (patch)
tree798266e7a76d8170d06515273e4f4f4c1859ce60
parent1f6a00a7a6655b0df8d94e9580b79c11f1574d19 (diff)
Slightly nicer logs
-rw-r--r--devbot/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/run.py b/devbot/run.py
index 7617909..5d2742a 100644
--- a/devbot/run.py
+++ b/devbot/run.py
@@ -71,7 +71,7 @@ def collect_logs(source_path, log_name):
log_path = config.get_log_path(log_name)
with open(log_path, "w") as f:
for filename, log in logs.items():
- f.write("===== %s =====\n\n%s" % (filename, log))
+ f.write("\n===== %s =====\n\n%s" % (filename, log))
last_log_path = os.path.join(config.logs_dir, "%s.log" % log_name)