pnnl / tesp

Other
39 stars 37 forks source link

data.py is full of `+` for string concatenation rather than `os.path.join()` #139

Open trevorhardy opened 8 months ago

trevorhardy commented 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 (/, \).

trevorhardy commented 7 months ago

Tested to be working on macOS and put into PR #142.