From 211994969e452d2c85886365c7e33c376d95e447 Mon Sep 17 00:00:00 2001 From: Justin Emter Date: Mon, 19 Mar 2018 17:23:55 -0700 Subject: [PATCH] Turning off overlap-cache as I try to fix daily scheduling error. --- PseudoChannel.py | 2 +- pseudo_config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PseudoChannel.py b/PseudoChannel.py index a7665c2..67f951d 100644 --- a/PseudoChannel.py +++ b/PseudoChannel.py @@ -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) diff --git a/pseudo_config.py b/pseudo_config.py index 3ecc7a1..9f357d5 100644 --- a/pseudo_config.py +++ b/pseudo_config.py @@ -71,7 +71,7 @@ When the schedule updates every 24 hours, it's possible that it will interrupt a playing from the previous day. To fix this, the app saves a "cached" schedule from the previous day to override any media that is trying to play while the previous day is finishing. """ -useDailyOverlapCache = True +useDailyOverlapCache = False dailyUpdateTime = "12:01 AM"