diff options
| -rwxr-xr-x | bin/keystone | 3 | ||||
| -rwxr-xr-x | bin/keystone-admin | 1 | ||||
| -rwxr-xr-x | bin/keystone-auth | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/bin/keystone b/bin/keystone index 483119f0..a2d45241 100755 --- a/bin/keystone +++ b/bin/keystone @@ -33,8 +33,7 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir)) if os.path.exists(os.path.join(possible_topdir, 'keystone', '__init__.py')): sys.path.insert(0, possible_topdir) -#load this first -import tools.tracer + import keystone from keystone.common import config from keystone.common import wsgi diff --git a/bin/keystone-admin b/bin/keystone-admin index 26cc1ccc..795bb9eb 100755 --- a/bin/keystone-admin +++ b/bin/keystone-admin @@ -34,7 +34,6 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), if os.path.exists(os.path.join(possible_topdir, 'keystone', '__init__.py')): sys.path.insert(0, possible_topdir) -import tools.tracer #load this first import keystone from keystone.common import config from keystone.common import wsgi diff --git a/bin/keystone-auth b/bin/keystone-auth index 179a0bef..0eb17ac6 100755 --- a/bin/keystone-auth +++ b/bin/keystone-auth @@ -33,8 +33,7 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir)) if os.path.exists(os.path.join(possible_topdir, 'keystone', '__init__.py')): sys.path.insert(0, possible_topdir) -#load this first -import tools.tracer + import keystone from keystone.common import config from keystone.common import wsgi |
