diff --git a/SConstruct b/SConstruct
index a22e557a79c3902be26f61978cfd1089f9e35a92..e51e5a1f30ceb97c0c8b702fd7a85b83a941956d 100644
--- a/SConstruct
+++ b/SConstruct
@@ -110,11 +110,11 @@ conf = Configure(env, custom_tests = {
   })
   
 if not conf.CheckPKGConfig('0.15.0'): 
-   print 'pkg-config >= 0.15.0 not found.' 
+   print('pkg-config >= 0.15.0 not found.')
    Exit(1)
 
 if not conf.CheckPKG('ogg'): 
-  print 'libogg not found.' 
+  print('libogg not found.')
   Exit(1) 
 
 if conf.CheckPKG('vorbis vorbisenc'):