Merge "Fix keystone-manage config file path"

This commit is contained in:
Jenkins 2016-03-28 13:57:28 +00:00 committed by Gerrit Code Review
commit 6639463c37

View File

@ -20,7 +20,7 @@ import sys
# If ../../keystone/__init__.py exists, add ../../ to Python search path, so
# that it will override what happens to be installed in
# /usr/(local/)lib/python...
possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
possible_topdir = os.path.normpath(os.path.join(os.path.abspath(__file__),
os.pardir,
os.pardir,
os.pardir))