Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/run.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-27 17:37:46 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-27 17:37:46 (GMT)
commit263de25535176e76b63dd59c7757bd4272d3e56e (patch)
tree97ecbc66d3115334cf8ce4a01e160adb86e061bf /devbot/run.py
parent8d3d1978996ed0c9bc9e5a7489efb52f33fa2f88 (diff)
Make create_log private
Diffstat (limited to 'devbot/run.py')
-rw-r--r--devbot/run.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/devbot/run.py b/devbot/run.py
index 3f09e89..8d47adb 100644
--- a/devbot/run.py
+++ b/devbot/run.py
@@ -71,8 +71,7 @@ def collect_logs(source_path, log_name):
with open(path) as f:
logs[filename] = f.read()
- log_path = config.create_log(log_name)
- with open(log_path, "w") as f:
+ with open(config.log_path, "w") as f:
for filename, log in logs.items():
f.write("\n===== %s =====\n\n%s" % (filename, log))