summaryrefslogtreecommitdiffstats
path: root/keystone/openstack
diff options
context:
space:
mode:
authorRongzeZhu <zrzhit@gmail.com>2012-08-16 23:07:09 +0800
committerRongzeZhu <zrzhit@gmail.com>2012-08-17 09:50:06 +0800
commitbf45b4552689b2d69088e5394c7cd29bc401e359 (patch)
tree933807c7b03c6816f4099d8dd2eea36dfb62b8c5 /keystone/openstack
parent64bbaf51e6aa1bbab4be2405a99f9b116e2e8f32 (diff)
downloadkeystone-bf45b4552689b2d69088e5394c7cd29bc401e359.tar.gz
keystone-bf45b4552689b2d69088e5394c7cd29bc401e359.tar.xz
keystone-bf45b4552689b2d69088e5394c7cd29bc401e359.zip
Remove unused variables
'reqs_in' in openstack.common.setup.get_reqs_from_files is unused. 'dialect' in common.sql.migrate_repo.versions.001_add_initial_tables is unused. Change-Id: Ic2ae2873cef1978eefe03148861fedd5a4a013b2
Diffstat (limited to 'keystone/openstack')
-rw-r--r--keystone/openstack/common/setup.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/keystone/openstack/common/setup.py b/keystone/openstack/common/setup.py
index ff4b9b55..e6945c50 100644
--- a/keystone/openstack/common/setup.py
+++ b/keystone/openstack/common/setup.py
@@ -50,7 +50,6 @@ def canonicalize_emails(changelog, mapping):
# Get requirements from the first file that exists
def get_reqs_from_files(requirements_files):
- reqs_in = []
for requirements_file in requirements_files:
if os.path.exists(requirements_file):
return open(requirements_file, 'r').read().split('\n')