Skip to content

Commit 65ec8b8

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6c1ee2f commit 65ec8b8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dpdispatcher/dlog.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
dlog.setLevel(logging.INFO)
99
try:
1010
cwd_logfile_path = os.path.join(os.getcwd(), "dpdispatcher.log")
11-
dlogf = logging.FileHandler(
12-
cwd_logfile_path, delay=True
13-
)
11+
dlogf = logging.FileHandler(cwd_logfile_path, delay=True)
1412
dlog.addHandler(dlogf)
1513
dlog.info(f"LOG INIT:dpdispatcher log direct to {cwd_logfile_path}")
1614
except PermissionError:

0 commit comments

Comments
 (0)