Open trevorhardy opened 8 months ago
All kinds of pathing problems on Windows are created by using + instead of os.path.join(). Many of the paths defined in data.py that are intended to be user-accessible are unusable as they contain mixed slashes (/, \).
+
os.path.join()
/
\
Tested to be working on macOS and put into PR #142.
All kinds of pathing problems on Windows are created by using
+
instead ofos.path.join()
. Many of the paths defined in data.py that are intended to be user-accessible are unusable as they contain mixed slashes (/
,\
).