summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@rackspace.com>2011-06-17 10:50:28 -0500
committerDolph Mathews <dolph.mathews@rackspace.com>2011-06-17 10:50:28 -0500
commit21a4e235f0ff94abff3dd0ecd623951ee166ad13 (patch)
treef9bb520d02d0e0cab4bdde0bdd41763ac39588f9
parentc0b87f49edbf2508f67d755db120db236b3b9e2f (diff)
downloadkeystone-21a4e235f0ff94abff3dd0ecd623951ee166ad13.tar.gz
keystone-21a4e235f0ff94abff3dd0ecd623951ee166ad13.tar.xz
keystone-21a4e235f0ff94abff3dd0ecd623951ee166ad13.zip
Removed unused imports in bin/
-rwxr-xr-xbin/keystone3
-rwxr-xr-xbin/keystone-admin1
-rwxr-xr-xbin/keystone-auth3
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