changeset 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 91db2aa0edfe
children b0ebab239f90
files mercurial/chgserver.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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'):