mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-14 12:25:48 +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 = []
|
exclude_dir = []
|
||||||
root_dirs = []
|
root_dirs = []
|
||||||
pathSep = '/'
|
pathSep = '/'
|
||||||
totalSize = 0
|
totalSize = 1
|
||||||
|
|
||||||
def __init__(self, vfs):
|
def __init__(self, vfs):
|
||||||
self.vfs = vfs
|
self.vfs = vfs
|
||||||
|
Loading…
Reference in New Issue
Block a user