Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/command.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-26 18:32:40 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-26 18:32:40 (GMT)
commitf87b9c558ecde19c6962576238d88fedddf65773 (patch)
tree1eab4ee24975463d4661a249a72e64895a9a4412 /devbot/command.py
parentdab868b20b936add86967eafe32711413b80dd6e (diff)
Append to log files, don't overwrite
Diffstat (limited to 'devbot/command.py')
-rw-r--r--devbot/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/command.py b/devbot/command.py
index 3b2bc30..ce7f73c 100644
--- a/devbot/command.py
+++ b/devbot/command.py
@@ -23,7 +23,7 @@ def run(args, test=False, retry=0):
return
if _log_path:
- stdout = open(_log_path, "w")
+ stdout = open(_log_path, "a")
stderr = subprocess.STDOUT
else:
stdout = None