##// END OF EJS Templates
svn: fixed problem with special characters inside subdirectories.
dan -
r4338:f83fb4e5 default
parent child Browse files
Show More
@@ -173,11 +173,10 b' class SubversionCommit(base.BaseCommit):'
173 raise CommitError(
173 raise CommitError(
174 "Directory does not exist for commit %s at "
174 "Directory does not exist for commit %s at "
175 " '%s'" % (self.raw_id, path))
175 " '%s'" % (self.raw_id, path))
176 path = self._fix_path(path)
176 path = safe_str(self._fix_path(path))
177
177
178 path_nodes = []
178 path_nodes = []
179 for name, kind in self._remote.get_nodes(
179 for name, kind in self._remote.get_nodes(path, revision=self._svn_rev):
180 safe_str(path), revision=self._svn_rev):
181 node_path = vcspath.join(path, name)
180 node_path = vcspath.join(path, name)
182 if kind == 'dir':
181 if kind == 'dir':
183 node = nodes.DirNode(node_path, commit=self)
182 node = nodes.DirNode(node_path, commit=self)
General Comments 0
You need to be logged in to leave comments. Login now