Skip to content

Commit 0458de6

Browse files
committed
Minor style fix for line-length
1 parent 0d71eae commit 0458de6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/impactlab_tools/utils/paralog.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ def __init__(self, jobname, jobtitle, logdir, timeout, exclusive_jobnames=None):
7373
# Record this process in the master log
7474
with open(os.path.join(logdir, "master.log"), 'a') as fp:
7575
fp.write(
76-
f"{time.asctime()} {self.jobtitle}: {os.getpid():d} {self.logpath}\n"
76+
f"{time.asctime()} {self.jobtitle}:"
77+
f"{os.getpid():d} {self.logpath}\n"
7778
)
7879
except Exception:
7980
print("CAUGHT A WILD EXCEPTION BUT IGNORING IT WITHOUT LOGGING IT!")

0 commit comments

Comments
 (0)