Skip to content

Commit 389d493

Browse files
committed
test - normalize path for MultiFilePathOptions
As part of work for issue2551334 - get test suite running under windows use os.path.normpath on absolute path processing to provide similar processing to os.path.join on the relative codepath.
1 parent 43bdd38 commit 389d493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ def get(self):
590590
if elem and not os.path.isabs(elem):
591591
pathlist.append(os.path.join(self.config["HOME"], elem))
592592
else:
593-
pathlist.append(elem)
593+
pathlist.append(os.path.normpath(elem))
594594
if pathlist:
595595
return pathlist
596596
else:

0 commit comments

Comments
 (0)