Merge "Fix the import of NotFound exception"
diff --git a/barbican_tempest_plugin/tests/scenario/manager.py b/barbican_tempest_plugin/tests/scenario/manager.py
index 1fb2306..e9476f2 100644
--- a/barbican_tempest_plugin/tests/scenario/manager.py
+++ b/barbican_tempest_plugin/tests/scenario/manager.py
@@ -270,7 +270,7 @@
available_stores = []
try:
available_stores = self.image_client.info_stores()['stores']
- except exceptions.NotFound:
+ except lib_exc.NotFound:
pass
available_import_methods = self.image_client.info_import()[
'import-methods']['value']