Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
[FIX] flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mileo committed Feb 15, 2017
1 parent c99efc6 commit f280a0a
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/test_repo/docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@
repos = []
for repo in os.listdir(repos_home):
if os.path.isdir(os.path.join(repos_home, repo)) and \
not repo.startswith('.') and \
'broken' not in repo:
not repo.startswith('.') and 'broken' not in repo:
repos += repo

addons_paths = []
Expand All @@ -49,6 +48,7 @@ def add_path(*paths):
os.path.join(*paths)
)


add_path(odoo_root, 'openerp', 'addons')
add_path(odoo_root, 'addons')
add_path(build_path)
Expand All @@ -70,7 +70,7 @@ def add_path(*paths):
addons += directory
print('dirs=%s' % dirs)

## sphinxodoo.ext.autodoc variables
# sphinxodoo.ext.autodoc variables
sphinxodoo_root_path = odoo_root
sphinxodoo_addons = addons
sphinxodoo_addons_path = ['.',
Expand All @@ -79,7 +79,6 @@ def add_path(*paths):
sys.path.append(build_path)
sphinxodoo_addons = []


# -- General configuration ------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
Expand Down Expand Up @@ -172,7 +171,6 @@ def add_path(*paths):
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = True


# -- Options for HTML output ----------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand All @@ -199,7 +197,8 @@ def add_path(*paths):
# html_logo = None

# The name of an image file (relative to this directory) to use as a favicon of
# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# the docs. This file should be a Windows icon file (.ico) being
# 16x16 or 32x32
# pixels large.
# html_favicon = None

Expand Down

0 comments on commit f280a0a

Please sign in to comment.