##// END OF EJS Templates
hgweb: make top-level prototypes mirror their callees
Matt Mackall -
r10992:a9b8c8c8 default
parent child Browse files
Show More
@@ -8,9 +8,9 b''
8
8
9 import hgweb_mod, hgwebdir_mod
9 import hgweb_mod, hgwebdir_mod
10
10
11 def hgweb(*args, **kwargs):
11 def hgweb(repo, name=None):
12 return hgweb_mod.hgweb(*args, **kwargs)
12 return hgweb_mod.hgweb(repo, name=name)
13
13
14 def hgwebdir(*args, **kwargs):
14 def hgwebdir(config, baseui=None):
15 return hgwebdir_mod.hgwebdir(*args, **kwargs)
15 return hgwebdir_mod.hgwebdir(config, baseui=baseui)
16
16
General Comments 0
You need to be logged in to leave comments. Login now