Skip to content

Commit 1f1f0e1

Browse files
committed
Fix misprint
(cherry picked from commit b14c83f)
1 parent 23bb696 commit 1f1f0e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exec_helpers/exceptions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class ExecCalledProcessError(ExecHelperError):
5555
__slots__ = ()
5656

5757

58-
class ExecHelperTimeutProcessError(ExecCalledProcessError):
58+
class ExecHelperTimeoutProcessError(ExecCalledProcessError):
5959
"""Timeout based errors."""
6060

6161
__slots__ = ("result", "timeout")
@@ -75,7 +75,7 @@ def __init__(
7575
:param timeout: timeout for command
7676
:type timeout: typing.Union[int, float]
7777
"""
78-
super(ExecHelperTimeutProcessError, self).__init__(message)
78+
super(ExecHelperTimeoutProcessError, self).__init__(message)
7979
self.result = result
8080
self.timeout = timeout
8181

@@ -95,7 +95,7 @@ def stderr(self): # type: () -> typing.Text
9595
return self.result.stderr_str
9696

9797

98-
class ExecHelperNoKillError(ExecHelperTimeutProcessError):
98+
class ExecHelperNoKillError(ExecHelperTimeoutProcessError):
9999
"""Impossible to kill process.
100100
101101
.. versionadded:: 1.10.0
@@ -115,7 +115,7 @@ def __init__(self, result, timeout): # type: (exec_result.ExecResult, typing.Un
115115
super(ExecHelperNoKillError, self).__init__(message, result=result, timeout=timeout)
116116

117117

118-
class ExecHelperTimeoutError(ExecHelperTimeutProcessError):
118+
class ExecHelperTimeoutError(ExecHelperTimeoutProcessError):
119119
"""Execution timeout.
120120
121121
.. versionchanged:: 1.3.0 provide full result and timeout inside.

0 commit comments

Comments
 (0)