We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following lines are creating multiple directories at the same level as the parent
L2L/l2l/utils/JUBE_runner.py
Lines 56 to 65 in ef273cb
Paths should be generated using os.path.join(parent, child). For example,
xml_path = os.path.join(self.path, "jube_xml") if not os.path.exists(xml_path): os.makedirs(xml_path)
The real issue is presented further down in the source code. This seems to be the same as the initial setting
Line 76 in bb305d4
Lines 130 to 131 in bb305d4
The main issue is that, by manually generating the paths, we lose compatibility between OS-s and risk misplacing files.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following lines are creating multiple directories at the same level as the parent
L2L/l2l/utils/JUBE_runner.py
Lines 56 to 65 in ef273cb
Paths should be generated using os.path.join(parent, child). For example,
The real issue is presented further down in the source code. This seems to be the same as the initial setting
L2L/l2l/utils/JUBE_runner.py
Line 76 in bb305d4
but this is not (notice the leading forward slash after path)
L2L/l2l/utils/JUBE_runner.py
Lines 130 to 131 in bb305d4
The main issue is that, by manually generating the paths, we lose compatibility between OS-s and risk misplacing files.
The text was updated successfully, but these errors were encountered: