From f87b9c558ecde19c6962576238d88fedddf65773 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Wed, 26 Dec 2012 18:32:40 +0000 Subject: Append to log files, don't overwrite --- (limited to 'devbot') 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 -- cgit v0.9.1