mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-30 19:18:31 +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:
|
for line in input:
|
||||||
while "\x1b" in line:
|
while "\x1b" in line:
|
||||||
line = _escape.sub ("", line)
|
line = _escape.sub ("", line)
|
||||||
print output.write (line)
|
output.write (line)
|
||||||
|
|
||||||
def main ():
|
def main ():
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue