Merge "Fix the import of NotFound exception"

This commit is contained in:
Zuul 2022-07-01 20:19:30 +00:00 committed by Gerrit Code Review
commit e4b0683526
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ class ScenarioTest(manager.NetworkScenarioTest):
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']