Skip to content
Snippets Groups Projects
Commit 65757d81 authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Fix jobcard fpath for read

parent a6f7125d
No related branches found
Tags v0.1
1 merge request!1Merge python environment
Pipeline #14263 failed
......@@ -145,7 +145,8 @@ class GiBUUOutput:
jobcard_files = list(filter(jobcard_regex.match, self.output_files))
if len(jobcard_files) == 1:
self._jobcard_fname = jobcard_files[0]
self.jobcard = read_jobcard(self._jobcard_fname)
self.jobcard = read_jobcard(
join(self._data_path, self._jobcard_fname))
else:
self.jobcard = None
......
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