Fix extraneous print() in media plugin

This commit is contained in:
Ken Roberts 2016-04-23 14:12:28 -07:00
parent d5b98b7308
commit 3e0769d946
1 changed files with 2 additions and 1 deletions

View File

@ -160,7 +160,8 @@ def process_check_binary(program_path):
"""
program_type = None
runlog = check_binary_exists(program_path)
print(runlog, type(runlog))
# NOTE: Unneeded print statement - let originator clear it out if needed
# print(runlog, type(runlog))
# Analyse the output to see it the program is mediainfo
for line in runlog.splitlines():
decoded_line = line.decode()