don't need these checks anymore

This commit is contained in:
Rob Weber 2014-08-01 13:06:35 -05:00
parent e6215dde51
commit 647bd8811b

View File

@ -511,8 +511,6 @@ class FileManager:
dirPath = xbmc.translatePath(directory + "/" + aDir) dirPath = xbmc.translatePath(directory + "/" + aDir)
file_ext = aDir.split('.')[-1] file_ext = aDir.split('.')[-1]
#don't backup your own zip file
if(aDir != "xbmc_backup_temp.zip"):
self.addFile("-" + dirPath) self.addFile("-" + dirPath)
#catch for "non directory" type files #catch for "non directory" type files
@ -527,7 +525,6 @@ class FileManager:
#copy all the files #copy all the files
for aFile in files: for aFile in files:
if(aFile != 'xbmc_backup_temp.zip'):
utils.log(aFile) utils.log(aFile)
filePath = xbmc.translatePath(directory + "/" + aFile) filePath = xbmc.translatePath(directory + "/" + aFile)
self.addFile(filePath) self.addFile(filePath)