From 21a4e235f0ff94abff3dd0ecd623951ee166ad13 Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Fri, 17 Jun 2011 10:50:28 -0500 Subject: Removed unused imports in bin/ --- bin/keystone | 3 +-- bin/keystone-admin | 1 - 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 -- cgit