Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

custom_subsystem_preset already a list? #6

Open
alexeicolin opened this issue Jun 8, 2013 · 0 comments
Open

custom_subsystem_preset already a list? #6

alexeicolin opened this issue Jun 8, 2013 · 0 comments

Comments

@alexeicolin
Copy link

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.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant