From e0811fb708a88cb15df25f03dc09355a5489d77c Mon Sep 17 00:00:00 2001 From: Adrian Knoth Date: Fri, 10 Feb 2012 18:36:59 +0100 Subject: [PATCH] wscript: make python 3.x print function available to python2.6 Instead of rewriting all end=' ' statements, we can import the new print function in python-2.6.0a2 or newer. Should be "old enough". --- wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/wscript b/wscript index 72c5dc6e..8a8cefd2 100644 --- a/wscript +++ b/wscript @@ -1,5 +1,6 @@ #! /usr/bin/env python # encoding: utf-8 +from __future__ import print_function import os import Utils