From 8e4b1fab36693f511d3e3d27673fc60e3a9287fa Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Thu, 25 Jun 2015 15:57:47 +0300 Subject: [PATCH] Fix more print statements. Refs #5331 --- mediagoblin/media_types/audio/spectrogram.py | 4 +++- mediagoblin/storage/mountstorage.py | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/mediagoblin/media_types/audio/spectrogram.py b/mediagoblin/media_types/audio/spectrogram.py index dd4d0299..433bb300 100644 --- a/mediagoblin/media_types/audio/spectrogram.py +++ b/mediagoblin/media_types/audio/spectrogram.py @@ -19,6 +19,8 @@ # Bram de Jong # 2012, Joar Wandborg +from __future__ import print_function + try: from PIL import Image except ImportError: @@ -29,7 +31,7 @@ import numpy 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") class AudioProcessingException(Exception): diff --git a/mediagoblin/storage/mountstorage.py b/mediagoblin/storage/mountstorage.py index 4125a88d..a829db31 100644 --- a/mediagoblin/storage/mountstorage.py +++ b/mediagoblin/storage/mountstorage.py @@ -14,6 +14,8 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +from __future__ import print_function + import six from mediagoblin.storage import StorageInterface, clean_listy_filepath @@ -61,9 +63,9 @@ class MountStorage(StorageInterface): """ new_ent = clean_listy_filepath(dirpath) - print "Mounting:", repr(new_ent) + print("Mounting:", repr(new_ent)) already, rem_1, table, rem_2 = self._resolve_to_backend(new_ent, True) - print "===", repr(already), repr(rem_1), repr(rem_2), len(table) + print("===", repr(already), repr(rem_1), repr(rem_2), len(table)) assert (len(rem_2) > 0) or (None not in table), \ "That path is already mounted" -- 2.25.1