summaryrefslogtreecommitdiffstats
path: root/games/pingus/patches/scons-python3.patch
blob: 96c36e45638d44ca52d0c4dce4f0bb201c76ec9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- pingus-0.7.6/SConscript.orig	2019-07-27 08:28:23.143619494 +0000
+++ pingus-0.7.6/SConscript	2019-07-27 08:29:35.844531921 +0000
@@ -126,12 +126,12 @@
     def configure_end(self):
         self.env = self.conf.Finish()
 
-        print "Reports:"
-        print self.reports
+        print ("Reports:")
+        print (self.reports)
 
         if not self.fatal_error == "":
-            print "Fatal Errors:"
-            print self.fatal_error
+            print ("Fatal Errors:")
+            print (self.fatal_error)
             Exit(1)
 
     def configure_gxx(self):