From fc89edc858793eba17a041b73d362b8c35b7fb4f Mon Sep 17 00:00:00 2001 From: emb <> Date: Thu, 5 Mar 2015 22:55:13 -0600 Subject: [PATCH] Making package script python 3+ friendly --- Scripts/Package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Package.py b/Scripts/Package.py index 80040ee..0bc2ee8 100644 --- a/Scripts/Package.py +++ b/Scripts/Package.py @@ -40,13 +40,13 @@ gstreamer_path = None # windows needs a gstreamer path set if args.os == 'windows': if not hasattr(args, 'gstreamer_path'): - print 'missing argument --gstreamer_path ' + print('missing argument --gstreamer_path') sys.exit(-1) gstreamer_path = args.gstreamer_path if not os.path.exists(gstreamer_path): - print 'could not find gstreamer libraries: ' + gstreamer_path + print('could not find gstreamer libraries: ' + gstreamer_path) sys.exit(-1)