diff hgext/color.py @ 24848:2f88821856eb stable

ui: allow capture of subprocess output We want to capture hooks output during bundle2 processing. For this purpose we introduce a new 'subproc' argument to 'ui.pushbuffer'. When set, the output of sub process created through 'ui.system' will be captured in the buffer too. This will be used in the next changeset.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Thu, 23 Apr 2015 14:57:39 +0100
parents 1818d4dca75c
children 80c5b2666a96
line wrap: on
line diff
--- a/hgext/color.py	Thu Apr 23 14:20:36 2015 +0100
+++ b/hgext/color.py	Thu Apr 23 14:57:39 2015 +0100
@@ -445,7 +445,7 @@
             return super(colorui, self).write_err(*args, **opts)
 
         label = opts.get('label', '')
-        if self._bufferstates and self._bufferstates[-1]:
+        if self._bufferstates and self._bufferstates[-1][0]:
             return self.write(*args, **opts)
         if self._colormode == 'win32':
             for a in args: