From ba8ba6bb482388887fa9ab6f5b4dfb1994eb32a4 Mon Sep 17 00:00:00 2001 From: skbidiap <sushil.bhattacharjee@idiap.ch> Date: Mon, 19 Sep 2016 13:27:57 +0200 Subject: [PATCH] fixed print bug --- bob/db/replaymobile/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bob/db/replaymobile/models.py b/bob/db/replaymobile/models.py index 20f42a1..ad5c9e2 100644 --- a/bob/db/replaymobile/models.py +++ b/bob/db/replaymobile/models.py @@ -206,7 +206,7 @@ class File(Base): [optional] The extension of the filename - this will control the type of output and the codec for saving the input blob. """ - print 'video file extension:', extension +# print('video file extension: %s' % extension) if extension is None: extension = '.mov' # if self.get_quality() == 'laptop': @@ -223,7 +223,7 @@ class File(Base): vin = numpy.rollaxis(vin, 3, 2) if not self.is_tablet(): - print "flipping mobile video" +# print("flipping mobile video") vin = vin[:, :, ::-1,:] # if self.is_rotated(): -- GitLab