Mercurial > public > mercurial-scm > hg
diff mercurial/chgserver.py @ 30572:cfb227016d01
chgserver: call "load" for new ui objects
After d83ca854fa21, we need to call "ui.load" explicitly to load config
files.
author | Jun Wu <quark@fb.com> |
---|---|
date | Mon, 05 Dec 2016 21:36:35 +0000 |
parents | ff7df4bb75de |
children | b3643bfc7fcb |
line wrap: on
line diff
--- a/mercurial/chgserver.py Sun Dec 04 23:22:34 2016 +0530 +++ b/mercurial/chgserver.py Mon Dec 05 21:36:35 2016 +0000 @@ -255,7 +255,7 @@ def _loadnewui(srcui, args): from . import dispatch # avoid cycle - newui = srcui.__class__() + newui = srcui.__class__.load() for a in ['fin', 'fout', 'ferr', 'environ']: setattr(newui, a, getattr(srcui, a)) if util.safehasattr(srcui, '_csystem'):