Author: jpotts
Date: Thu Jan 6 17:06:54 2011
New Revision: 1055942
URL: http://svn.apache.org/viewvc?rev=1055942&view=rev
Log:
Fixing sys path so sphinx autodoc will work in Hudson
Modified:
incubator/chemistry/cmislib/trunk/src/doc/src/conf.py
Modified: incubator/chemistry/cmislib/trunk/src/doc/src/conf.py
URL:
http://svn.apache.org/viewvc/incubator/chemistry/cmislib/trunk/src/doc/src/conf.py?rev=1055942&r1=1055941&r2=1055942&view=diff
==============================================================================
--- incubator/chemistry/cmislib/trunk/src/doc/src/conf.py (original)
+++ incubator/chemistry/cmislib/trunk/src/doc/src/conf.py Thu Jan 6 17:06:54
2011
@@ -29,6 +29,7 @@ import sys, os
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.append(os.path.abspath('.'))
+sys.path.append(os.path.abspath('../..'))
# -- General configuration
-----------------------------------------------------