Skip to content

Commit

Permalink
Fixed ActionKilledException in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Collins committed Jul 21, 2020
1 parent 4e103eb commit 0031dc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/labthings/actions/thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def _is_thread_proc_running(self):
def terminate(self, exception=ActionKilledException):
"""
:param exception: (Default value = TaskKillException)
:param exception: (Default value = ActionKilledException)
:raises which: should cause the thread to exit silently
"""
Expand Down Expand Up @@ -306,7 +306,7 @@ def stop(self, timeout=None, exception=ActionKilledException):
:param timeout: Time to wait before killing thread forecefully. Defaults to ``self.default_stop_timeout``
:type timeout: int
:param exception: (Default value = TaskKillException)
:param exception: (Default value = ActionKilledException)
"""
if timeout is None:
Expand Down

0 comments on commit 0031dc3

Please sign in to comment.