From 49b0405c96b961d1c04bdaab3b67473ba7396406 Mon Sep 17 00:00:00 2001
From: Tiago Freitas Pereira <tiagofrepereira@gmail.com>
Date: Tue, 4 Oct 2016 14:03:39 +0200
Subject: [PATCH] Fixed identation

---
 templates/sphinx-conf.py | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/templates/sphinx-conf.py b/templates/sphinx-conf.py
index 3bc6bef..daf4fd1 100644
--- a/templates/sphinx-conf.py
+++ b/templates/sphinx-conf.py
@@ -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
-- 
GitLab