From 86fc49d2fd311d18f8a8f3999990e1e9251a2824 Mon Sep 17 00:00:00 2001 From: kaliko Date: Wed, 28 Jan 2015 12:13:18 +0100 Subject: [PATCH] Better error handling with python2 --- vinstall.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100755 => 100644 vinstall.py diff --git a/vinstall.py b/vinstall.py old mode 100755 new mode 100644 index 842495c..5b63f5a --- a/vinstall.py +++ b/vinstall.py @@ -1,7 +1,8 @@ -# # Copyright (C) 2013 Vinay Sajip. New BSD License. # Copyright (C) 2014 Kaliko Jack # +from __future__ import print_function + REQ_VER = (3,3) import sys if sys.version_info < REQ_VER: -- 2.39.2