[Checkins] SVN: grok/branches/ulif-grokdocs/doc/conf.py Make template path absolute.

Uli Fouquet uli at gnufix.de
Fri Apr 4 07:20:29 EDT 2008


Log message for revision 85096:
  Make template path absolute.

Changed:
  U   grok/branches/ulif-grokdocs/doc/conf.py

-=-
Modified: grok/branches/ulif-grokdocs/doc/conf.py
===================================================================
--- grok/branches/ulif-grokdocs/doc/conf.py	2008-04-04 09:06:42 UTC (rev 85095)
+++ grok/branches/ulif-grokdocs/doc/conf.py	2008-04-04 11:20:27 UTC (rev 85096)
@@ -13,7 +13,6 @@
 
 import sys
 
-#import os
 from os import path, curdir
 import re
 
@@ -90,7 +89,7 @@
 
 # Content template for the index page, filename relative to this file.
 #html_index = ''
-html_index = 'build/docindex.template'
+html_index = path.join(path.abspath(curdir),  'build', 'docindex.template')
 
 # Custom sidebar templates, maps page names to filenames relative to this file.
 #html_sidebars = {}



More information about the Checkins mailing list