From 6786a233e072f03290c911b72b0521ca31e01825 Mon Sep 17 00:00:00 2001 From: Andrew Brock Date: Wed, 6 May 2015 21:36:50 +1000 Subject: [PATCH] Fix zip files getting an extra copy of each file on each run of the scheduler --- resources/lib/backup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/lib/backup.py b/resources/lib/backup.py index f30a449..a3b2cbf 100644 --- a/resources/lib/backup.py +++ b/resources/lib/backup.py @@ -558,12 +558,11 @@ class XbmcBackup: rFile.close() class FileManager: - fileArray = [] not_dir = ['.zip','.xsp','.rar'] - vfs = None def __init__(self,vfs): self.vfs = vfs + self.fileArray = [] def walkTree(self,directory):