Skip to content

Commit

Permalink
Doc: Prevent doc build from picking up system-wide python-ldap
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Heimes authored and Petr Viktorin committed Nov 28, 2017
1 parent 823760a commit 0fc0d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# If your extensions are in another directory, add it here.
_doc_dir = os.path.dirname(__file__)
sys.path.append(_doc_dir)
sys.path.append(os.path.join(_doc_dir, '../Lib/'))
sys.path.insert(0, os.path.join(_doc_dir, '../Lib/'))
sys.path.insert(0, os.path.join(_doc_dir, '../Lib/ldap'))

# Import fake `_ldap` module
Expand Down

0 comments on commit 0fc0d0c

Please sign in to comment.