Subject: Do not modify sys.path in sphinx config
Author: Alexander Sulfrian <alexander@sulfrian.net>
Forwarded: not-needed

We want to set PYTHONPATH in debian/rules to the correct pybuild build
directory. If this path is modified afterwards, the correct modules cannot be
found by sphinx autodoc.

Index: python-atom/docs/source/conf.py
===================================================================
--- python-atom.orig/docs/source/conf.py
+++ python-atom/docs/source/conf.py
@@ -15,9 +15,6 @@
 import os
 import sys
 
-sys.path.insert(0, os.path.abspath("."))
-sys.path.insert(0, os.path.abspath("../"))
-
 from atom.version import version_info
 
 # -- Project information -----------------------------------------------------
