summaryrefslogtreecommitdiffstats
path: root/source-builder/sb-check
diff options
context:
space:
mode:
Diffstat (limited to 'source-builder/sb-check')
-rwxr-xr-xsource-builder/sb-check4
1 files changed, 3 insertions, 1 deletions
diff --git a/source-builder/sb-check b/source-builder/sb-check
index 43aae67..d23b799 100755
--- a/source-builder/sb-check
+++ b/source-builder/sb-check
@@ -18,6 +18,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, os
base = os.path.dirname(sys.argv[0])
sys.path.insert(0, base + '/sb')
@@ -25,5 +27,5 @@ try:
import check
check.run()
except ImportError:
- print >> sys.stderr, "Incorrect Set Bulder installation"
+ print("Incorrect Source Builder installation", file = sys.stderr)
sys.exit(1)