mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-15 04:45:49 +01:00
Kodi requires slash on directory "exists"
This commit is contained in:
parent
2ac05ab042
commit
138047bd32
@ -560,7 +560,7 @@ class FileManager:
|
|||||||
|
|
||||||
def walkTree(self,directory):
|
def walkTree(self,directory):
|
||||||
|
|
||||||
if(self.vfs.exists(directory)):
|
if(self.vfs.exists(directory + "/")):
|
||||||
dirs,files = self.vfs.listdir(directory)
|
dirs,files = self.vfs.listdir(directory)
|
||||||
|
|
||||||
#create all the subdirs first
|
#create all the subdirs first
|
||||||
|
Loading…
Reference in New Issue
Block a user