Skip to content

Commit 4e87140

Browse files
authored
Fix lint warning. (#1329)
1 parent e3136f4 commit 4e87140

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rqd/rqd/rqnetwork.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ def kill(self, message=""):
162162
else:
163163
os.killpg(self.pid, rqd.rqconstants.KILL_SIGNAL)
164164
finally:
165-
log.warning("kill() successfully killed frameId=%s pid=%s", self.frameId, self.pid)
165+
log.warning(
166+
"kill() successfully killed frameId=%s pid=%s", self.frameId, self.pid)
166167
rqd.rqutil.permissionsLow()
167168
except OSError as e:
168169
log.warning(

0 commit comments

Comments
 (0)