Fix an occurence of `print ...` to `print(...)`
authorBoris Bobrov <breton@cynicmansion.ru>
Thu, 21 Jan 2016 20:19:31 +0000 (23:19 +0300)
committerBoris Bobrov <breton@cynicmansion.ru>
Thu, 21 Jan 2016 20:19:31 +0000 (23:19 +0300)
extlib/freesound/audioprocessing.py

index 2c2b35b587cccddf52952bcf4da6340f4f51fc52..085c6127c789bb8b321fc314e6e9a0b959b80870 100644 (file)
@@ -43,7 +43,7 @@ def get_sound_type(input_filename):
 try:
     import scikits.audiolab as audiolab
 except ImportError:
-    print "WARNING: audiolab is not installed so wav2png will not work"
+    print("WARNING: audiolab is not installed so wav2png will not work")
 import subprocess
 
 class AudioProcessingException(Exception):