diff options
author | René Stadler <mail@renestadler.de> | 2007-12-13 13:43:28 +0200 |
---|---|---|
committer | René Stadler <mail@renestadler.de> | 2007-12-13 13:43:28 +0200 |
commit | 5b2140f9e397af0eed8f816375ccabe5e2126aed (patch) | |
tree | 9cc8bcbef036753c468e5f78cae7f2b2cdd7607c | |
parent | 137fa3df6e12a22a100a258f4c013aea0d530eac (diff) |
Fix color stripping script
-rwxr-xr-x | gst-debug-strip-color.py | 2 |
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 (): |