Skip to content

Commit

Permalink
Minor style fix for line-length
Browse files Browse the repository at this point in the history
  • Loading branch information
brews committed Dec 5, 2024
1 parent 0d71eae commit 0458de6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/impactlab_tools/utils/paralog.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ def __init__(self, jobname, jobtitle, logdir, timeout, exclusive_jobnames=None):
# Record this process in the master log
with open(os.path.join(logdir, "master.log"), 'a') as fp:
fp.write(
f"{time.asctime()} {self.jobtitle}: {os.getpid():d} {self.logpath}\n"
f"{time.asctime()} {self.jobtitle}:"
f"{os.getpid():d} {self.logpath}\n"
)
except Exception:
print("CAUGHT A WILD EXCEPTION BUT IGNORING IT WITHOUT LOGGING IT!")
Expand Down

0 comments on commit 0458de6

Please sign in to comment.