MetaReader.py: call subprocess.check_output with text=True
Since python version 3.7, subprocess.check_output
(and other methods of the subprocess
module) return bytes instead of a string. This MR sets the argument Text
to true to obtain a string.