Fixed bug #964644: Made API documentation generation semi-idiot-proof.

Fixes: https://launchpad.net/bugs/964644
This commit is contained in:
Raoul Snyman 2012-10-12 21:26:20 +02:00
parent 8e510087e9
commit 1aacf81d34
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,10 @@ import sys
# documentation root, use os.path.abspath to make it absolute, like shown here.
path_to_code = os.path.abspath(os.path.join(os.path.split(__file__)[0],
'..', '..', '..', '..', 'OpenLP', 'trunk'))
if not os.path.exists(path_to_code):
print 'Incorrect path to code, expecting "%s"' % path_to_code
sys.exit(1)
sys.path.insert(0, path_to_code)
# -- General configuration -----------------------------------------------------