From 2851e1d919ee07cc52dc9ac947e279d92376a261 Mon Sep 17 00:00:00 2001 From: guido Date: Wed, 14 Feb 2007 02:31:50 +0100 Subject: [PATCH] [svn r38777] Fixed api and source link role relative paths. --HG-- branch : trunk --- py/doc/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/py/doc/conftest.py b/py/doc/conftest.py index d37fc3c14..60b7c4191 100644 --- a/py/doc/conftest.py +++ b/py/doc/conftest.py @@ -35,7 +35,8 @@ def get_docpath(): return pypkgdir.join(path, abs=True) def get_apigen_relpath(): - return relpath(get_apigenpath().strpath, get_docpath().strpath) + return relpath(get_docpath().strpath + '/', + get_apigenpath().strpath + '/') def deindent(s, sep='\n'): leastspaces = -1