Skip to content
Snippets Groups Projects
Commit 6541696b authored by Benoit Boissinot's avatar Benoit Boissinot
Browse files

fix zeroconf handling for hgwebdir (error found by pychecker)

parent f96c20e9
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,5 @@
class hgwebdirzc(hgwebdir_mod.hgwebdir):
def run(self):
print os.environ
for r, p in self.repos:
u = ui.ui(parentui=self.parentui)
......@@ -86,4 +85,4 @@
for r, p in self.repos:
u = ui.ui(parentui=self.parentui)
u.readconfig(os.path.join(path, '.hg', 'hgrc'))
u.readconfig(os.path.join(p, '.hg', 'hgrc'))
n = os.path.basename(r)
......@@ -89,5 +88,5 @@
n = os.path.basename(r)
publish(n, "hgweb", p, int(repo.ui.config("web", "port", 8000)))
publish(n, "hgweb", p, int(u.config("web", "port", 8000)))
return super(hgwebdirzc, self).run()
# listen
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment