mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 10:38:27 +00:00
Fix color stripping script
This commit is contained in:
parent
7b6c127469
commit
98444f652f
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ def strip_color (input, output):
|
|||
for line in input:
|
||||
while "\x1b" in line:
|
||||
line = _escape.sub ("", line)
|
||||
print output.write (line)
|
||||
output.write (line)
|
||||
|
||||
def main ():
|
||||
|
||||
|
|
Loading…
Reference in a new issue