mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-14 04:15:49 +01:00
file size should always be at least 1 to avoid division errors
closes #209
This commit is contained in:
parent
e144e5ea92
commit
d4240f1345
@ -569,7 +569,7 @@ class FileManager:
|
||||
exclude_dir = []
|
||||
root_dirs = []
|
||||
pathSep = '/'
|
||||
totalSize = 0
|
||||
totalSize = 1
|
||||
|
||||
def __init__(self, vfs):
|
||||
self.vfs = vfs
|
||||
|
Loading…
Reference in New Issue
Block a user