diff options
author | Boris Bobrov <breton@cynicmansion.ru> | 2016-01-21 23:19:31 +0300 |
---|---|---|
committer | Boris Bobrov <breton@cynicmansion.ru> | 2016-01-21 23:19:31 +0300 |
commit | 525e851e17b826db2307cc5b4ebad1ee58fb9180 (patch) | |
tree | aec41c43509da3f55d8f4f49b777603b4d24efe5 | |
parent | bbe085565166059157957030feea9fefa2a0d835 (diff) | |
download | mediagoblin-525e851e17b826db2307cc5b4ebad1ee58fb9180.tar.lz mediagoblin-525e851e17b826db2307cc5b4ebad1ee58fb9180.tar.xz mediagoblin-525e851e17b826db2307cc5b4ebad1ee58fb9180.zip |
Fix an occurence of `print ...` to `print(...)`
-rw-r--r-- | extlib/freesound/audioprocessing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extlib/freesound/audioprocessing.py b/extlib/freesound/audioprocessing.py index 2c2b35b5..085c6127 100644 --- a/extlib/freesound/audioprocessing.py +++ b/extlib/freesound/audioprocessing.py @@ -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): |