From 0ee09dcdbecc115531ee4fbfa534bcb654b5cbf6 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 29 Sep 2012 15:53:54 +0200 Subject: build: make Python scripts compatible with Python 2.x They were originally written for Python 3.x. Changing them to work on Python 2.x as well is trivial. Tested with Python 2.7.3 and 3.2.3. --- TOOLS/matroska.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'TOOLS/matroska.py') diff --git a/TOOLS/matroska.py b/TOOLS/matroska.py index ffa388e47b..ab5684f1ed 100755 --- a/TOOLS/matroska.py +++ b/TOOLS/matroska.py @@ -22,6 +22,8 @@ Can also be used to directly parse Matroska files and display their contents. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # +# for compatibility with Python 2.x +from __future__ import print_function elements_ebml = ( 'EBML, 1a45dfa3, sub', ( -- cgit v1.2.3