Turning off overlap-cache as I try to fix daily scheduling error.

This commit is contained in:
Justin Emter
2018-03-19 17:23:55 -07:00
parent 7060c80f5a
commit 211994969e
2 changed files with 2 additions and 2 deletions

View File

@@ -732,7 +732,7 @@ class PseudoChannel():
os.makedirs(writepath)
if os.path.exists(writepath+fileName):
os.remove(writepath+fileName)
mode = 'a' if os.path.exists(writepath) else 'w'
mode = 'w'
with open(writepath+fileName, mode) as f:
f.write(data)