From c9b5b1714a8bdc2abeb68a557e24d3b22eac5bc7 Mon Sep 17 00:00:00 2001 From: hpk Date: Wed, 14 Feb 2007 00:20:43 +0100 Subject: [PATCH] [svn r38766] naming consistency --HG-- branch : trunk --- py/doc/confrest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/doc/confrest.py b/py/doc/confrest.py index 10c577545..3137da2d4 100644 --- a/py/doc/confrest.py +++ b/py/doc/confrest.py @@ -25,9 +25,9 @@ class Page(object): def a_docref(self, name, relhtmlpath): return html.a(name, class_="menu", href=relhtmlpath) - def a_apigenref(self, name, relhtml): + def a_apigenref(self, name, relhtmlpath): apigen_relpath = get_apigen_relpath() - path = apigen_relpath.rstrip("/") + "/" + relhtml + path = apigen_relpath.rstrip("/") + "/" + relhtmlpath return html.a(name, href=path, class_="menu") def fill_menubar(self):