Merge pull request #3 from Syphdias/cull-children

Cull children since the script does not mount parents
This commit is contained in:
Alexander Lutsai 2022-06-20 00:13:57 +03:00 committed by GitHub
commit 77506abb8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,12 @@ class ChoosePartition:
r = r.decode().replace('0B,', '\"0B\",')
self.blkinfo = json.loads(r.encode())
partn = 0
# filter for devices with children, none other are used by this script
# (this is not entirely correct, but goes beyond these lines)
self.blkinfo['blockdevices'] = [
bd
for bd in self.blkinfo['blockdevices']
if 'children' in bd]
for bd in self.blkinfo['blockdevices']:
if 'children' not in bd:
continue