##// END OF EJS Templates
color: set initial default value for 'colormode' to None...
Pierre-Yves David -
r31072:80f04ba7 default
parent child Browse files
Show More
@@ -297,7 +297,7 b' def _modesetup(ui, coloropt):'
297 return None
297 return None
298
298
299 class colorui(uimod.ui):
299 class colorui(uimod.ui):
300 _colormode = 'ansi'
300 _colormode = None
301 def write(self, *args, **opts):
301 def write(self, *args, **opts):
302 if self._colormode is None:
302 if self._colormode is None:
303 return super(colorui, self).write(*args, **opts)
303 return super(colorui, self).write(*args, **opts)
General Comments 0
You need to be logged in to leave comments. Login now