You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reported by Jean-Baptiste Queru <jbq@google.com> on Tue Mar 31 21:02:35 PDT 2009
Source: JIRA REPO-19
The repo script uses pager, and inherently will produce control character
(coloring) to standard output, even if the output is redirected to another
pipe or script.
This is because the script checks for the terminal presence on FD 0, and in
case of redirection FD 0 is still attached to the terminal.
.repo/repo/pager.py needs to be modified to fix this, replacing isatty(0)
with isatty(1). (Probably, it should be not os.isatty(0) or not os.isatty(1))
(see also http://b.android.com/2004 for original issue)
Original issue reported on code.google.com by code-rev...@gtempaccount.com on 24 Sep 2009 at 9:09
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
code-rev...@gtempaccount.com
on 24 Sep 2009 at 9:09The text was updated successfully, but these errors were encountered: