shred86/Ortho4XP

Suggestion: use os.path.join rather than concatenating file paths

Closed this issue · 0 comments

base_path = sys._MEIPASS + "/Ortho4XP_Data/"

This is an issue for tracking. I'm happy to submit a PR this evening once I've finished eating.

os.path.join should be used rather than concatenating file paths. Windows uses \ whereas Unix uses /. os.path.join will handle this accordingly based on the OS.