Skip to content

Commit

Permalink
bb/ui/crumbs/hobprefs: fix setting IMAGE_FSYTPES
Browse files Browse the repository at this point in the history
We were setting the value as a list when a string is expected

Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
  • Loading branch information
joshuagl authored and koenkooi committed Aug 24, 2011
1 parent 8fb006a commit 510334a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitbake/lib/bb/ui/crumbs/hobprefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def output_type_toggled_cb(self, check, handler):
else:
self.selected_image_types = handler.remove_image_output_type(ot)

self.configurator.setLocalConfVar('IMAGE_FSTYPES', "%s" % self.selected_image_types)
self.configurator.setLocalConfVar('IMAGE_FSTYPES', "%s" % " ".join(self.selected_image_types).lstrip(" "))

def sdk_machine_combo_changed_cb(self, combo, handler):
sdk_mach = combo.get_active_text()
Expand Down

0 comments on commit 510334a

Please sign in to comment.