summaryrefslogtreecommitdiffstats
path: root/k8s/k8splugin/decorators.py
diff options
context:
space:
mode:
Diffstat (limited to 'k8s/k8splugin/decorators.py')
-rw-r--r--k8s/k8splugin/decorators.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/k8s/k8splugin/decorators.py b/k8s/k8splugin/decorators.py
index 59d14d8..b9b32bf 100644
--- a/k8s/k8splugin/decorators.py
+++ b/k8s/k8splugin/decorators.py
@@ -19,12 +19,14 @@
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
import copy
+
from cloudify import ctx
from cloudify.exceptions import NonRecoverableError, RecoverableError
+
from k8splugin import discovery as dis
-from k8splugin.exceptions import DockerPluginDeploymentError, \
- DockerPluginDependencyNotReadyError
from k8splugin import utils
+from k8splugin.exceptions import (DockerPluginDependencyNotReadyError,
+ DockerPluginDeploymentError)
def monkeypatch_loggers(task_func):
@@ -111,4 +113,4 @@ def wrap_error_handling_update(update_func):
ctx.logger.error ("Unexpected error during update operation: {0}".format(str(e)))
raise NonRecoverableError(e)
- return wrapper \ No newline at end of file
+ return wrapper