From af49d0ea3abd80eb26d59bb195b2e54f6de74713 Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 11 Jul 2012 01:05:27 +0200 Subject: [PATCH] Delete all .pyc files. fixes #543 --- couchpotato/core/_base/updater/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/_base/updater/main.py b/couchpotato/core/_base/updater/main.py index 1ecb6b40..6459c837 100644 --- a/couchpotato/core/_base/updater/main.py +++ b/couchpotato/core/_base/updater/main.py @@ -282,7 +282,7 @@ class SourceUpdater(BaseUpdater): app_dir = ss(Env.get('app_dir')) # Get list of files we want to overwrite - self.deletePyc(only_excess = False) + self.deletePyc() existing_files = [] for root, subfiles, filenames in os.walk(app_dir): for filename in filenames: