Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/ClusterShell/Task.py
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,10 @@ def _terminate(self, kill):
"""
Abort completion subroutine.
"""
assert self._quit == True
assert self._quit is True

if self._terminated:
return
self._terminated = True

if kill:
Expand Down