Fix print statements to be python3 compatible. Refs #5331
This commit is contained in:
parent
380ea91dab
commit
fe124c8979
@ -14,7 +14,7 @@
|
||||
# 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 division
|
||||
from __future__ import divisioin, print_function
|
||||
|
||||
import os
|
||||
import sys
|
||||
@ -433,4 +433,4 @@ if __name__ == '__main__':
|
||||
print('I\'m a callback!')
|
||||
transcoder.transcode(*args, progress_callback=cb)
|
||||
elif options.action == 'discover':
|
||||
print transcoder.discover(*args)
|
||||
print(transcoder.discover(*args))
|
||||
|
Loading…
x
Reference in New Issue
Block a user