Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
emmettbutler committed Apr 23, 2015
1 parent e9f0b2c commit 3ebe9cc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import inspect
currentdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
parentdir = os.path.dirname(currentdir)
sys.path.insert(0, parentdir)
sys.path.append(parentdir)
from version import version

project = u'pykafka'
Expand All @@ -40,4 +40,5 @@
pygments_style = 'sphinx'
htmlhelp_basename = 'pykafkadoc'

autodoc_default_flags = ['special-members', 'show-inheritance']
autodoc_default_flags = ['special-members', 'undoc-members', 'private-members',
'show-inheritance']

0 comments on commit 3ebe9cc

Please sign in to comment.