##// 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 173 raise CommitError(
174 174 "Directory does not exist for commit %s at "
175 175 " '%s'" % (self.raw_id, path))
176 path = self._fix_path(path)
176 path = safe_str(self._fix_path(path))
177 177
178 178 path_nodes = []
179 for name, kind in self._remote.get_nodes(
180 safe_str(path), revision=self._svn_rev):
179 for name, kind in self._remote.get_nodes(path, revision=self._svn_rev):
181 180 node_path = vcspath.join(path, name)
182 181 if kind == 'dir':
183 182 node = nodes.DirNode(node_path, commit=self)
General Comments 0
You need to be logged in to leave comments. Login now