pep8 1.3.3 cleanup

removing unused imports

Change-Id: I0472fd074bbe0b2ec07f1548f3930df339523465
This commit is contained in:
Joe Heck 2012-08-24 01:16:31 +00:00
parent 6b04662844
commit 861670e091
4 changed files with 11 additions and 13 deletions

View File

@ -32,7 +32,7 @@ sys.path.insert(0, os.path.abspath('../..'))
# 'sphinx.ext.todo', 'sphinx.ext.coverage']
extensions = ['sphinx.ext.autodoc',
'sphinx.ext.todo',
# 'sphinx.ect.intersphinx',
# 'sphinx.ect.intersphinx',
'sphinx.ext.coverage']
todo_include_todos = True
@ -111,7 +111,7 @@ man_pages = [
[u'OpenStack'], 1),
('man/keystone-all', 'keystone-all', u'Keystone Startup Command',
[u'OpenStack'], 1),
]
]
# -- Options for HTML output --------------------------------------------------
@ -200,14 +200,14 @@ htmlhelp_basename = 'keystonedoc'
# -- Options for LaTeX output -------------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt',
# The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#'preamble': '',
# Additional stuff for the LaTeX preamble.
#'preamble': '',
}
# Grouping the document tree into LaTeX files. List of tuples (source

View File

@ -4,8 +4,6 @@ from paste import deploy
from keystone import config
from keystone.common import logging
from keystone.common import utils
from keystone.common import wsgi
LOG = logging.getLogger(__name__)
CONF = config.CONF

View File

@ -139,7 +139,7 @@ class _Win32Colorizer(object):
'magenta': red | blue | bold,
'cyan': green | blue | bold,
'white': red | green | blue | bold
}
}
def supported(cls, stream=sys.stdout):
try:

View File

@ -62,9 +62,9 @@ def run_command(cmd, redirect_output=True, check_exit_code=True):
HAS_EASY_INSTALL = bool(run_command(['which', 'easy_install'],
check_exit_code=False).strip())
check_exit_code=False).strip())
HAS_VIRTUALENV = bool(run_command(['which', 'virtualenv'],
check_exit_code=False).strip())
check_exit_code=False).strip())
def check_dependencies():