summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorin Hochstein <lorinh@gmail.com>2017-07-22 16:29:42 -0400
committerGitHub <noreply@github.com>2017-07-22 16:29:42 -0400
commit2677cc32d2ed9bb697f8f35a8b29c8001ffc7277 (patch)
treedf57afa2896fe89ccf9acf8919fab5f3babc5b2f
parente95521aa1eddf711d556d270cc6789a523ad1a84 (diff)
parentdb425c88e2ee56f6a057a9ae958ce85d4071d694 (diff)
downloadopenstack-ansible-modules-2677cc32d2ed9bb697f8f35a8b29c8001ffc7277.tar.gz
Merge pull request #64 from mkhon/fix-keystone-manageHEADmaster
Fix ImportError in "keystone_manage: action=dbsync"
-rw-r--r--keystone_manage2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone_manage b/keystone_manage
index 780f7c9..296a133 100644
--- a/keystone_manage
+++ b/keystone_manage
@@ -31,7 +31,7 @@ try:
# https://bugs.launchpad.net/glance/+bug/885529
from keystone.openstack.common import gettextutils
gettextutils.install('keystone')
-except AttributeError:
+except ImportError:
# this is not havana
pass