We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab67499 commit fd10ff5Copy full SHA for fd10ff5
main.py
@@ -479,7 +479,8 @@ def output_dir(self):
479
if os.path.isabs(self.output_line.text()):
480
return self.output_line.text()
481
else:
482
- return utils.abs_path(self.output_line.text())
+ return utils.path_join(self.project_dir(),
483
+ self.output_line.text())
484
return ''
485
486
def create_download_bar(self):
utils.py
@@ -126,6 +126,9 @@ def path_join(base, *rest):
126
127
if is_windows():
128
rpath = rpath.replace('/', '\\')
129
+
130
+ rpath = os.path.normpath(rpath)
131
132
return rpath
133
134
def get_data_path(dir_path):
0 commit comments