Skip to content

Commit

Permalink
Fix lint warning. (AcademySoftwareFoundation#1329)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcipriano authored Nov 9, 2023
1 parent e3136f4 commit 4e87140
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rqd/rqd/rqnetwork.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ def kill(self, message=""):
else:
os.killpg(self.pid, rqd.rqconstants.KILL_SIGNAL)
finally:
log.warning("kill() successfully killed frameId=%s pid=%s", self.frameId, self.pid)
log.warning(
"kill() successfully killed frameId=%s pid=%s", self.frameId, self.pid)
rqd.rqutil.permissionsLow()
except OSError as e:
log.warning(
Expand Down

0 comments on commit 4e87140

Please sign in to comment.