Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #8406 from mnadeem92/issue8405
Browse files Browse the repository at this point in the history
[1LP][RFR] Fixing catalog exists property
  • Loading branch information
izapolsk authored Jan 30, 2019
2 parents 8ec4993 + 4a0efef commit 6f11aa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cfme/services/catalogs/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from widgetastic.utils import Parameter
from widgetastic.widget import Text
from widgetastic_manageiq import MultiBoxSelect
from widgetastic_patternfly import Button, Input
from widgetastic_patternfly import Button, CandidateNotFound, Input
from navmazing import NavigateToAttribute, NavigateToSibling

from cfme.common import Taggable
Expand Down Expand Up @@ -120,7 +120,7 @@ def exists(self):
try:
navigate_to(self, 'Details')
return True
except NameError:
except (NameError, CandidateNotFound):
return False


Expand Down

0 comments on commit 6f11aa4

Please sign in to comment.