fix breakage from new recursive=True arg to chmod

pull/15159/head
nitzmahone 9 years ago
parent 80e7fbff75
commit 4241106ad2

@ -66,7 +66,7 @@ class ShellModule(object):
path = self._unquote(path) path = self._unquote(path)
return path.endswith('/') or path.endswith('\\') return path.endswith('/') or path.endswith('\\')
def chmod(self, mode, path): def chmod(self, mode, path, recursive=True):
return '' return ''
def remove(self, path, recurse=False): def remove(self, path, recurse=False):

Loading…
Cancel
Save