Skip to content

Commit

Permalink
exception is not handled in the exception.
Browse files Browse the repository at this point in the history
added an exception handler to handle the exception in the exception.

Change-Id: I05f911b37ec67318cb427ee145d2c4effec6f905
Closes-bug: #1550764
  • Loading branch information
ymariappan committed Feb 27, 2016
1 parent cb0aabf commit 6c75f15
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/discovery/disc_auth_keystone.py
Expand Up @@ -8,7 +8,10 @@
try:
from keystoneclient.middleware import auth_token
except ImportError:
from keystonemiddleware import auth_token
try:
from keystonemiddleware import auth_token
except Exception:
pass
except Exception:
pass

Expand Down

0 comments on commit 6c75f15

Please sign in to comment.