udev-discover
udev-discover copied to clipboard
custom_subsystem_preset already a list?
On my system in v0.2 self.options['custom_subsystem_preset']
appears to already be a list instead of a string with space-separated words. Not sure if this is specific to my system (Ubuntu 12.04). Had to do this to udev-discover.in
to make it work:
< self.options['custom_subsystem_preset'].split(' '))
---
> self.options['custom_subsystem_preset'])
416c416
< ' '.join(self.subsys_dialog.get_chosen_subsystems())
---
> self.subsys_dialog.get_chosen_subsystems()
(There was one more small edit, but that's already in master.)