summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-08-20 10:55:44 +0300
committerLars Wirzenius <liw@liw.fi>2020-08-20 10:55:44 +0300
commit7a8c845a3352c5c57039d5f476dc2037c1562305 (patch)
tree0fd87e21c7b667d55ff5cc923f9fe4171977227a
parent284d59a3e5eb280466901680dd2ec4fd5b0c52b9 (diff)
downloadvmdb2-7a8c845a3352c5c57039d5f476dc2037c1562305.tar.gz
refactor(step_list.py): use Exception as base case, not cliapp
-rw-r--r--vmdb/step_list.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/vmdb/step_list.py b/vmdb/step_list.py
index 1cc0605..d5ce1dc 100644
--- a/vmdb/step_list.py
+++ b/vmdb/step_list.py
@@ -19,9 +19,6 @@
import logging
-import cliapp
-
-
class StepRunnerInterface: # pragma: no cover
def get_key_spec(self):
raise NotImplementedError()
@@ -106,7 +103,7 @@ class StepRunnerList:
]
-class StepError(cliapp.AppException):
+class StepError(Exception):
def __init__(self, msg):
logging.error(msg)
super().__init__(msg)