Merge "Fix flake8 errors"

This commit is contained in:
Jenkins 2013-07-04 23:54:03 +00:00 committed by Gerrit Code Review
commit 539d7e5a41
8 changed files with 60 additions and 58 deletions

View File

@ -28,7 +28,7 @@ os.environ['DJANGO_SETTINGS_MODULE'] = 'openstack_dashboard.settings'
def write_autodoc_index(): def write_autodoc_index():
def find_autodoc_modules(module_name, sourcedir): def find_autodoc_modules(module_name, sourcedir):
"""returns a list of modules in the SOURCE directory""" """Return a list of modules in the SOURCE directory."""
modlist = [] modlist = []
os.chdir(os.path.join(sourcedir, module_name)) os.chdir(os.path.join(sourcedir, module_name))
print "SEARCHING %s" % sourcedir print "SEARCHING %s" % sourcedir
@ -77,7 +77,8 @@ def write_autodoc_index():
if not(os.path.exists(MOD_DIR)): if not(os.path.exists(MOD_DIR)):
os.mkdir(MOD_DIR) os.mkdir(MOD_DIR)
for module in find_autodoc_modules(modulename, path): for module in find_autodoc_modules(modulename, path):
if any([module.startswith(exclude) for exclude \ if any([module.startswith(exclude)
for exclude
in EXCLUDED_MODULES]): in EXCLUDED_MODULES]):
print "Excluded module %s." % module print "Excluded module %s." % module
continue continue
@ -300,14 +301,14 @@ htmlhelp_basename = 'Ceilometerdoc'
# -- Options for LaTeX output ------------------------------------------------- # -- Options for LaTeX output -------------------------------------------------
latex_elements = { latex_elements = {
# The paper size ('letterpaper' or 'a4paper'). # The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper', #'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt'). # The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt', #'pointsize': '10pt',
# Additional stuff for the LaTeX preamble. # Additional stuff for the LaTeX preamble.
#'preamble': '', #'preamble': '',
} }
# Grouping the document tree into LaTeX files. List of tuples # Grouping the document tree into LaTeX files. List of tuples

View File

@ -44,8 +44,9 @@ from nova.openstack.common import importutils
from nova.openstack.common import log as logging from nova.openstack.common import log as logging
from nova.openstack.common.notifier import api as notifier_api from nova.openstack.common.notifier import api as notifier_api
# For nova_CONF.compute_manager, used in the nova_notifier module. # This option is used in the nova_notifier module, so make
from nova import service # sure it is defined.
config.cfg.CONF.import_opt('compute_manager', 'nova.service')
# HACK(dhellmann): Import this before any other ceilometer code # HACK(dhellmann): Import this before any other ceilometer code
# because the notifier module messes with the import path to force # because the notifier module messes with the import path to force

View File

@ -2,7 +2,7 @@
TMPFILE=`mktemp` TMPFILE=`mktemp`
trap "rm -f ${TMPFILE}" EXIT trap "rm -f ${TMPFILE}" EXIT
tools/conf/generate_sample.sh "${TMPFILE}" tools/conf/generate_sample.sh "${TMPFILE}"
if ! cmp -s "${TMPFILE}" etc/ceilometer/ceilometer.conf.sample if ! diff "${TMPFILE}" etc/ceilometer/ceilometer.conf.sample
then then
echo "E: ceilometer.conf.sample is not up to date, please run tools/conf/generate_sample.sh" echo "E: ceilometer.conf.sample is not up to date, please run tools/conf/generate_sample.sh"
exit 42 exit 42

View File

@ -104,7 +104,7 @@ def main():
]) ])
remaining_args = cfg.CONF(sys.argv) remaining_args = cfg.CONF(sys.argv)
utils.monkey_patch() #utils.monkey_patch()
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description='record or play back notification events', description='record or play back notification events',

View File

@ -36,7 +36,7 @@ PRE_RELEASE_STATUS = "Fix Released"
RELEASE_PROMPT = ( RELEASE_PROMPT = (
"Found {bug_count} '{pre_release_status}' bugs for milestone " "Found {bug_count} '{pre_release_status}' bugs for milestone "
"{milestone_title}. Mark them 'Fix Released'? [y/n]: " "{milestone_title}. Mark them 'Fix Released'? [y/n]: "
) )
def main(): def main():

View File

@ -107,7 +107,7 @@ COMMANDS = {
'resources': show_resources, 'resources': show_resources,
'total_resources': show_total_resources, 'total_resources': show_total_resources,
'raw': show_raw, 'raw': show_raw,
} }
def main(argv): def main(argv):

View File

@ -43,5 +43,5 @@ commands = {posargs}
[flake8] [flake8]
ignore = H301,H306 ignore = H301,H306
builtins = _ builtins = _
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools,nova_tests exclude=.venv,.git,.tox,dist,doc,./ceilometer/openstack/common,*lib/python*,*egg,tools,nova_tests,build
show-source = True show-source = True