changeset 25149 | 3f0744eeaeaf |
parent 25125 | bd625cd4e5e7 |
child 25363 | 3ff4b07412ad |
--- a/mercurial/ui.py Sat May 16 14:31:03 2015 -0400 +++ b/mercurial/ui.py Sat May 16 14:30:07 2015 -0400 @@ -842,7 +842,7 @@ output will be redirected if fout is not stdout. ''' out = self.fout - if util.any(s[1] for s in self._bufferstates): + if any(s[1] for s in self._bufferstates): out = self return util.system(cmd, environ=environ, cwd=cwd, onerr=onerr, errprefix=errprefix, out=out)