Index: python-whiteboard/stuff/pywhiteboard.py
===================================================================
--- python-whiteboard.orig/stuff/pywhiteboard.py
+++ python-whiteboard/stuff/pywhiteboard.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 # -*- coding: utf-8 -*-
 
 from wiimote import Wiimote
Index: python-whiteboard/stuff/wiimote.py
===================================================================
--- python-whiteboard.orig/stuff/wiimote.py
+++ python-whiteboard/stuff/wiimote.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 # -*- coding: utf-8 -*-
 
 import sys, re
@@ -16,7 +16,7 @@ import threading
 
 
 def calculateArea(points):
-    print points
+    print (points)
     p1 = points[0]
     p2 = points[1]
     p3 = points[2]
@@ -33,8 +33,8 @@ def calculateArea(points):
     paral_B_area = va[0]*vb[1] - va[1]*vb[0]
 
     result = float(paral_A_area)/2 + float(paral_B_area)/2
-    print paral_A_area
-    print paral_B_area
+    print (paral_A_area)
+    print (paral_B_area)
     return result
 
 
@@ -117,7 +117,7 @@ class Wiimote:
         except:
             self.wii = None
             self.error = True
-            print "Unexpected error:", sys.exc_info()[0]
+            print ("Unexpected error:", sys.exc_info()[0])
             raise
     
     def isConnected(self):
Index: python-whiteboard/python-whiteboard
===================================================================
--- python-whiteboard.orig/python-whiteboard
+++ python-whiteboard/python-whiteboard
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 # -*- coding: utf-8 -*-
 
 import sys, os
@@ -8,14 +8,14 @@ STUFFDIR = '/usr/share/python-whiteboard
 def main():
 	global STUFFDIR
 	if not os.path.isdir(STUFFDIR):
-		print "Can't find " + STUFFDIR
+		print ("Can't find " + STUFFDIR)
 		sys.exit(1)
 	
 	#apply our directories and test environment
 	os.chdir(STUFFDIR)
 	sys.path.insert(0, STUFFDIR)
 	
-	print "Using directory: " + STUFFDIR
+	print ("Using directory: " + STUFFDIR)
 	
 	import pywhiteboard
 	pywhiteboard.main()
Index: python-whiteboard/python-whiteboard-test
===================================================================
--- python-whiteboard.orig/python-whiteboard-test
+++ python-whiteboard/python-whiteboard-test
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 # -*- coding: utf-8 -*-
 
 import sys, os
@@ -7,14 +7,14 @@ def main():
 	localpath = os.path.split(os.path.abspath(sys.argv[0]))[0]
 	teststuff = os.path.join(localpath, 'stuff')
 	if not os.path.isdir(teststuff):
-		print "Not a testing environment"
+		print ("Not a testing environment")
 		sys.exit(0)
 	
 	#apply our directories and test environment
 	os.chdir(teststuff)
 	sys.path.insert(0, teststuff)
 	
-	print "Using directory: " + teststuff
+	print ("Using directory: " + teststuff)
 	
 	import pywhiteboard
 	pywhiteboard.main()
