Skip to content
Snippets Groups Projects
Commit 9991d991 authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Merge branch 'identation-sphinx-conf' into 'master'

Fixed identation

.... in the sphinx-conf.py

See merge request !8
parents 319f2e89 49b0405c
Branches
No related tags found
1 merge request!8Fixed identation
......@@ -43,15 +43,15 @@ nitpick_ignore = []
# Allows the user to override warnings from a separate file
if os.path.exists('nitpick-exceptions.txt'):
for line in open('nitpick-exceptions.txt'):
if line.strip() == "" or line.startswith("#"):
continue
dtype, target = line.split(None, 1)
target = target.strip()
try: # python 2.x
target = unicode(target)
except NameError:
pass
nitpick_ignore.append((dtype, target))
if line.strip() == "" or line.startswith("#"):
continue
dtype, target = line.split(None, 1)
target = target.strip()
try: # python 2.x
target = unicode(target)
except NameError:
pass
nitpick_ignore.append((dtype, target))
# Always includes todos
todo_include_todos = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment