# HG changeset patch # User Pierre-Yves David # Date 1482383925 -3600 # Node ID 80f04ba7f4d1f439d726068f02172f9a52b981fe # Parent 350d737e059d9af1a2879da80e44086355123c94 color: set initial default value for 'colormode' to None This should not introduce any behavior changes when using the color extension. In practive, the colormode will be setup at early at run time to the proper value (from config and environment). We do this change as this gets us closer of a state were we can have all the mechanisms associated to color in core with the feature disabled by default. diff -r 350d737e059d -r 80f04ba7f4d1 hgext/color.py --- a/hgext/color.py Thu Dec 22 13:19:12 2016 +0100 +++ b/hgext/color.py Thu Dec 22 06:18:45 2016 +0100 @@ -297,7 +297,7 @@ return None class colorui(uimod.ui): - _colormode = 'ansi' + _colormode = None def write(self, *args, **opts): if self._colormode is None: return super(colorui, self).write(*args, **opts)