summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Stadler <mail@renestadler.de>2007-12-13 13:43:28 +0200
committerRené Stadler <mail@renestadler.de>2007-12-13 13:43:28 +0200
commit5b2140f9e397af0eed8f816375ccabe5e2126aed (patch)
tree9cc8bcbef036753c468e5f78cae7f2b2cdd7607c
parent137fa3df6e12a22a100a258f4c013aea0d530eac (diff)
Fix color stripping script
-rwxr-xr-xgst-debug-strip-color.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-debug-strip-color.py b/gst-debug-strip-color.py
index 4b2d86c..ccc184f 100755
--- a/gst-debug-strip-color.py
+++ b/gst-debug-strip-color.py
@@ -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 ():