check_for_fat(): use subprocess.check_output to avoid dependency on Python 3.7
authorMichael Prokop <mika@grml.org>
Thu, 31 Oct 2019 10:46:55 +0000 (11:46 +0100)
committerMichael Prokop <mika@grml.org>
Thu, 31 Oct 2019 10:59:48 +0000 (11:59 +0100)
The text=... option for subprocess.Popen was added in Python 3.7 only
("text was added as a more readable alias for universal_newlines"), and
also "encoding" and "errors" were introduced in Python 3.6 only.
We don't want to stick to a specific py3k version, so let's try to
be as backwards compatible as possible.

Since we only need stdout of blkid let's switch to
subprocess.check_output instead.

Thanks: Florian Apolloner for review and feedback


No differences found