]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
hob: fix for XMLRPC mode
authorBogdan Marinescu <bogdan.a.marinescu@intel.com>
Wed, 16 Jan 2013 12:36:55 +0000 (12:36 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 14 May 2013 10:57:38 +0000 (13:57 +0300)
Contains a small fix to the builder.py code
(a missing "self" in a variable assignment).
With this changes, "hob" can run with the XMLRPC backend:

$ hob -t xmlrpc

Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lib/bb/ui/crumbs/builder.py

index 07118aabd03ee122bd7d592b98e50e1d055acd73..b5cfd9e917d9b21caa0fdd0fb38b398dc3f62897 100755 (executable)
@@ -540,7 +540,7 @@ class Builder(gtk.Window):
         if not self.display_sanity_check:
           func()
         else:
-          sanity_check_post_func = func
+          self.sanity_check_post_func = func
 
     def generate_configuration(self):
         if not self.sanity_checked: