When walking paths, replace \ with /.

This commit is contained in:
Tom Rothamel
2025-02-07 08:45:17 -05:00
parent 3c59cac254
commit 6783f22f3b
+1 -1
View File
@@ -288,7 +288,7 @@ def walkdir(path, elide=None): # @ReservedAssignment
if de.is_dir():
yield from walkdir(de.path, elide)
else:
yield de.path[elide:]
yield de.path[elide:].replace("\\", "/")
# A list of files that are recognised as archives.