Skip to content

Commit

Permalink
Merge "exception is not handled in the exception."
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Mar 9, 2016
2 parents 5a8b05a + 6c75f15 commit 5fb639f
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 5fb639f

Please sign in to comment.