From 57ea2cc410577ae0acf46e207608ec2836e24976 Mon Sep 17 00:00:00 2001 From: Dimitri John Ledkov Date: Thu, 18 Dec 2014 20:52:51 +0000 Subject: [PATCH] question --- ubuntutools/sponsor_patch/question.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ubuntutools/sponsor_patch/question.py b/ubuntutools/sponsor_patch/question.py index 363153f..1594eed 100644 --- a/ubuntutools/sponsor_patch/question.py +++ b/ubuntutools/sponsor_patch/question.py @@ -15,6 +15,8 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +from __future__ import print_function + import sys from ubuntutools.question import Question, YesNoQuestion @@ -43,5 +45,5 @@ def ask_for_manual_fixing(): def user_abort(): """Print abort and quit the program.""" - print "User abort." + print("User abort.") sys.exit(2)