mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-15 04:45:49 +01:00
rmdir function only accepts one arg now
This commit is contained in:
parent
ec214c074f
commit
44fdf7a20a
@ -73,7 +73,7 @@ class XBMCFileSystem(Vfs):
|
|||||||
return xbmcvfs.copy(xbmcvfs.translatePath(source), xbmcvfs.translatePath(dest))
|
return xbmcvfs.copy(xbmcvfs.translatePath(source), xbmcvfs.translatePath(dest))
|
||||||
|
|
||||||
def rmdir(self, directory):
|
def rmdir(self, directory):
|
||||||
return xbmcvfs.rmdir(directory, True)
|
return xbmcvfs.rmdir(directory)
|
||||||
|
|
||||||
def rmfile(self, aFile):
|
def rmfile(self, aFile):
|
||||||
return xbmcvfs.delete(aFile)
|
return xbmcvfs.delete(aFile)
|
||||||
|
Loading…
Reference in New Issue
Block a user