Commit 15afab26 authored by Jim Fulton's avatar Jim Fulton

Should have opened the log files with append.

parent 4954e5e2
...@@ -345,7 +345,7 @@ def stdlog(name): ...@@ -345,7 +345,7 @@ def stdlog(name):
f=os.environ[NAME] f=os.environ[NAME]
else: else:
f='/dev/null' f='/dev/null'
try: f=open(f,'w') try: f=open(f,'a')
except: f=None except: f=None
getattr(sys, name).close() getattr(sys, name).close()
if f is not None: setattr(sys, name, f) if f is not None: setattr(sys, name, f)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment