Skip to content

Commit

Permalink
Merge "exception is not handled in the exception." into R3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Feb 29, 2016
2 parents f4461a7 + 0a6d65c commit 0731fac
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 0731fac

Please sign in to comment.