Skip to content
Snippets Groups Projects
Commit 845039d8 authored by Scott Chacon's avatar Scott Chacon
Browse files

merged in small fix from vpenne

parents b78e86ad d237f5de
No related branches found
No related tags found
No related merge requests found
......@@ -293,7 +293,7 @@
for root, dirs, files in os.walk(r):
for name in files:
if root != r:
name = root[len(r) + 1:] + "/" + name
name = os.path.join(root[len(r) + 1:], name)
ret[name] = self._get_ref(os.path.join(r, name))
return ret
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment