25 lines
826 B
Diff
25 lines
826 B
Diff
From ff9f6386e9676f1b1507b8ca3ad6f314e766229d Mon Sep 17 00:00:00 2001
|
|
From: serge-sans-paille <sguelton@redhat.com>
|
|
Date: Mon, 4 Feb 2019 15:18:03 +0000
|
|
Subject: [PATCH] Fix extra Python3 print statements
|
|
|
|
---
|
|
ABI-Testsuite/test/lit.site.cfg | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/ABI-Testsuite/test/lit.site.cfg b/ABI-Testsuite/test/lit.site.cfg
|
|
index 938cb29..3f7dd4e 100755
|
|
--- a/ABI-Testsuite/test/lit.site.cfg
|
|
+++ b/ABI-Testsuite/test/lit.site.cfg
|
|
@@ -154,7 +154,7 @@ def determinePlatform():
|
|
hfp.write("#define ABISELECT(a,b) b // LP64 x86\n")
|
|
# #sys.exit(1)
|
|
else:
|
|
- print "ERROR: Invalid combination of config options. tspec= " , tspec
|
|
+ print("ERROR: Invalid combination of config options. tspec= " , tspec)
|
|
sys.exit(1)
|
|
hfp.close()
|
|
|
|
--
|
|
1.8.3.1
|
|
|