diff options
| author | Dolph Mathews <dolph.mathews@rackspace.com> | 2011-06-17 10:50:28 -0500 |
|---|---|---|
| committer | Dolph Mathews <dolph.mathews@rackspace.com> | 2011-06-17 10:50:28 -0500 |
| commit | 21a4e235f0ff94abff3dd0ecd623951ee166ad13 (patch) | |
| tree | f9bb520d02d0e0cab4bdde0bdd41763ac39588f9 | |
| parent | c0b87f49edbf2508f67d755db120db236b3b9e2f (diff) | |
| download | keystone-21a4e235f0ff94abff3dd0ecd623951ee166ad13.tar.gz keystone-21a4e235f0ff94abff3dd0ecd623951ee166ad13.tar.xz keystone-21a4e235f0ff94abff3dd0ecd623951ee166ad13.zip | |
Removed unused imports in bin/
| -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 |
