mirror of
https://github.com/SL-RU/ranger_udisk_menu.git
synced 2024-11-10 04:23:54 +01:00
Merge pull request #3 from Syphdias/cull-children
Cull children since the script does not mount parents
This commit is contained in:
commit
77506abb8a
6
menu.py
6
menu.py
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user