Show More
@@ -213,7 +213,7 b' def canonpath(root, cwd, myname):' | |||
|
213 | 213 | if not os.path.isabs(name): |
|
214 | 214 | name = os.path.join(root, cwd, name) |
|
215 | 215 | name = os.path.normpath(name) |
|
216 | if name.startswith(rootsep): | |
|
216 | if name != rootsep and name.startswith(rootsep): | |
|
217 | 217 | name = name[len(rootsep):] |
|
218 | 218 | audit_path(name) |
|
219 | 219 | return pconvert(name) |
General Comments 0
You need to be logged in to leave comments.
Login now