Skip to content

Commit

Permalink
Merge pull request #11971 from amaltaro/fix-11736
Browse files Browse the repository at this point in the history
Fix print function in WorkflowUpdater
  • Loading branch information
amaltaro authored Apr 19, 2024
2 parents 3468edd + e1805ba commit 4b77922
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def writePileupJson(tfile, jdict, logger, dest=None):
for jname in jdict:
fname = os.path.join(tmpDir, jname)
fstat = os.stat(fname)
logger.info("Updating pileup file at {jname} for workflow tarball: {tfile}")
logger.info(f"Updating pileup file at {jname} for workflow tarball: {tfile}")
with open(fname, 'w', encoding='utf-8') as ostream:
json.dump(jdict[jname], ostream)
if fstat == os.stat(fname):
Expand Down

0 comments on commit 4b77922

Please sign in to comment.