summaryrefslogtreecommitdiff
path: root/taskflow/exceptions.py
diff options
context:
space:
mode:
authorStanislav Kudriashev <stas.kudriashev@gmail.com>2014-03-31 01:08:49 +0300
committerStanislav Kudriashev <stas.kudriashev@gmail.com>2014-04-01 15:29:30 +0300
commit4366f0f719267892135ec56b4be7403700894a1e (patch)
tree18c3ca02be6ab04f801c2ce6cdf47e18a4b3ac0e /taskflow/exceptions.py
parent37996a5e355b35cb925d1fd54f076539e2190215 (diff)
downloadtaskflow-4366f0f719267892135ec56b4be7403700894a1e.tar.gz
Use correct exception in the timing listener
Used `StorageFailure` exception instead of non-existing `StorageError` in the timing listener. Change-Id: I83035b737f7507b760799a5d44d4c7d097103ae5
Diffstat (limited to 'taskflow/exceptions.py')
-rw-r--r--taskflow/exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/exceptions.py b/taskflow/exceptions.py
index 9e557cc..f526068 100644
--- a/taskflow/exceptions.py
+++ b/taskflow/exceptions.py
@@ -58,7 +58,7 @@ class TaskFlowException(Exception):
# Errors related to storage or operations on storage units.
class StorageFailure(TaskFlowException):
- """Raised when storage backends can not be read/saved/deleted..."""
+ """Raised when storage backends can not be read/saved/deleted."""
# Job related errors.