Commit 90358c39 authored by Christophe Dumez's avatar Christophe Dumez

- fixed missing parameter problem


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7320 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f8e1f624
...@@ -752,7 +752,7 @@ class SubversionTool(BaseTool, UniqueObject, Folder): ...@@ -752,7 +752,7 @@ class SubversionTool(BaseTool, UniqueObject, Folder):
""" """
client = self._getClient() client = self._getClient()
if not isinstance(path, list) : if not isinstance(path, list) :
path = [self._getWorkingPath(self.relativeToAbsolute(path))] path = [self._getWorkingPath(self.relativeToAbsolute(path, bt))]
if bt is not None: if bt is not None:
path = [self._getWorkingPath(self.relativeToAbsolute(x, bt)) for x in path] path = [self._getWorkingPath(self.relativeToAbsolute(x, bt)) for x in path]
client.revert(path, recurse) client.revert(path, recurse)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment