summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-03-29 20:01:18 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-29 21:19:37 +0100
commitc91fe7f9d21939fd437dbd79a923499f90fc95c6 (patch)
treee81f569e1e5dd1c17dfa31624707b87e42991339 /lib/bb/ui/crumbs/hobeventhandler.py
parent8a1f6953a082d8002585bfd9e8a67d2a7f69d6aa (diff)
downloadbitbake-c91fe7f9d21939fd437dbd79a923499f90fc95c6.tar.gz
Hob: Change the format to store image_fstype variable
Use string format to store image_fstype instead of a list. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/ui/crumbs/hobeventhandler.py')
-rw-r--r--lib/bb/ui/crumbs/hobeventhandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/crumbs/hobeventhandler.py b/lib/bb/ui/crumbs/hobeventhandler.py
index 11444ad45..7d53e305d 100644
--- a/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/lib/bb/ui/crumbs/hobeventhandler.py
@@ -262,7 +262,7 @@ class HobHandler(gobject.GObject):
self.server.runCommand(["setVariable", "SDKMACHINE", sdk_machine])
def set_image_fstypes(self, image_fstypes):
- self.server.runCommand(["setVariable", "IMAGE_FSTYPES", " ".join(image_fstypes).lstrip(" ")])
+ self.server.runCommand(["setVariable", "IMAGE_FSTYPES", image_fstypes])
def set_distro(self, distro):
if distro != "defaultsetup":