fix breakage from new recursive=True arg to chmod
This commit is contained in:
parent
80e7fbff75
commit
4241106ad2
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ class ShellModule(object):
|
|||
path = self._unquote(path)
|
||||
return path.endswith('/') or path.endswith('\\')
|
||||
|
||||
def chmod(self, mode, path):
|
||||
def chmod(self, mode, path, recursive=True):
|
||||
return ''
|
||||
|
||||
def remove(self, path, recurse=False):
|
||||
|
|
Loading…
Reference in a new issue