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 9d490f1 commit 8eb5c67Copy full SHA for 8eb5c67
cwltool/provenance.py
@@ -1506,7 +1506,7 @@ def create_job(self,
1506
rel_path = posixpath.join(_posix_path(WORKFLOW), "primary-output.json")
1507
else:
1508
rel_path = posixpath.join(_posix_path(WORKFLOW), "primary-job.json")
1509
- j = json.dumps(copied, indent=4, ensure_ascii=False)
+ j = json.dumps(dict(copied), indent=4, ensure_ascii=False)
1510
with self.write_bag_file(rel_path) as file_path:
1511
file_path.write(j + u"\n")
1512
_logger.debug(u"[provenance] Generated customised job file: %s",
0 commit comments