Skip to content
Snippets Groups Projects
Commit 9d394e0c authored by Daniel Nemergut's avatar Daniel Nemergut
Browse files

This ALSO needed to be a path...it worked in the interpreter though

parent 1b74668a
No related branches found
No related tags found
2 merge requests!1669Catchup with main,!1640WS-1975 Image flagtemplate rawdata
Pipeline #15286 passed
......@@ -89,7 +89,7 @@ class GeneralFoundation(FoundationIF):
"""
# Copy files that need to exist next to the data into the rawdata directory
for file in Path(self.working_dir).glob('*flagtargetstemplate.txt'):
if file.exists():
if Path(file).exists():
shutil.copy(file, self.rawdata_dir)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment