changeset 10992 | a9b8c8c8ce80 |
parent 10263 | 25e572394f5c |
child 10994 | c12a57c1a67e |
--- a/mercurial/hgweb/__init__.py Mon Apr 26 11:02:11 2010 -0500 +++ b/mercurial/hgweb/__init__.py Mon Apr 26 11:03:40 2010 -0500 @@ -8,9 +8,9 @@ import hgweb_mod, hgwebdir_mod -def hgweb(*args, **kwargs): - return hgweb_mod.hgweb(*args, **kwargs) +def hgweb(repo, name=None): + return hgweb_mod.hgweb(repo, name=name) -def hgwebdir(*args, **kwargs): - return hgwebdir_mod.hgwebdir(*args, **kwargs) +def hgwebdir(config, baseui=None): + return hgwebdir_mod.hgwebdir(config, baseui=baseui)