Fix more print statements. Refs #5331
authorBerker Peksag <berker.peksag@gmail.com>
Thu, 25 Jun 2015 12:57:47 +0000 (15:57 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Thu, 25 Jun 2015 13:05:39 +0000 (16:05 +0300)
mediagoblin/media_types/audio/spectrogram.py
mediagoblin/storage/mountstorage.py

index dd4d0299c0788bb942eafb8cc9f820d4160dd53f..433bb300b1dbda98a9454c8cfdf422bb25ffe59b 100644 (file)
@@ -19,6 +19,8 @@
 #   Bram de Jong <bram.dejong at domain.com where domain in gmail>
 #   2012, Joar Wandborg <first name at last name dot se>
 
+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):
index 4125a88d901393c41c4ba6071a48a6c0ef30a2cc..a829db31870cce281cc2c2c864d49e15c3405f2e 100644 (file)
@@ -14,6 +14,8 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+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"