Skip to content

Commit

Permalink
Fix bug in function of automated skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
plbrault committed Jun 8, 2024
1 parent eca845e commit eb3f6b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automated_skeleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def _update_PROC_KILL(self, event):
event:
.pid: id of the process
"""
del self.processes[event.pid]
proc = self.processes.pop(event.pid)
# shouldn't need this as pages are freed before the process is killed
for page in proc.pages:
del self.pages[page.key]
Expand Down

0 comments on commit eb3f6b1

Please sign in to comment.