[svn r38766] naming consistency

--HG--
branch : trunk
This commit is contained in:
hpk 2007-02-14 00:20:43 +01:00
parent f643f601c6
commit c9b5b1714a
1 changed files with 2 additions and 2 deletions

View File

@ -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):