# HG changeset patch # User Simon Heimberg # Date 1363886208 -3600 # Node ID 6793ae6e36dce55ae26d4ad61bcec06bfb59d2dc # Parent 35fb2ef52a39b85169cab1c03cda5cfa335c72f9 serve: pass the prepared baseui to hgweb The baseui was carefully prepared but not used. ui can contain repo specific settings which can have unwanted effects. diff -r 35fb2ef52a39 -r 6793ae6e36dc mercurial/commands.py --- a/mercurial/commands.py Thu Mar 21 18:16:48 2013 +0100 +++ b/mercurial/commands.py Thu Mar 21 18:16:48 2013 +0100 @@ -5093,7 +5093,7 @@ " here (.hg not found)")) o = repo.root - app = hgweb.hgweb(o, baseui=ui) + app = hgweb.hgweb(o, baseui=baseui) class service(object): def init(self):