check_for_fat: Avoid comparing strings and bytes
authorSven Joachim <svenjoac@gmx.de>
Wed, 30 Oct 2019 16:28:07 +0000 (17:28 +0100)
committerSven Joachim <svenjoac@gmx.de>
Wed, 30 Oct 2019 16:28:07 +0000 (17:28 +0100)
By default Subprocess.open() opens file objects in binary mode, so the
"filesystem" variable is an array of bytes, and comparing it to a
string always yields false.  Fix that by explicitly opening the stream
in text mode.


No differences found