diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-11 17:03:55 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:33 +0100 |
commit | 1180bab54e2879401f3586c91a48174191a1ee8b (patch) | |
tree | a45aeee20eb5969cc1ac778fac47134929f4e021 /bitbake/lib/bb/ui/puccho.py | |
parent | 5b216c8000dbc3ed9f3e996242eb24269fcaf919 (diff) | |
download | poky-1180bab54e2879401f3586c91a48174191a1ee8b.tar.gz |
Apply some 2to3 transforms that don't cause issues in 2.6
(Bitbake rev: d39ab776e7ceaefc8361150151cf0892dcb70d9c)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/ui/puccho.py')
-rw-r--r-- | bitbake/lib/bb/ui/puccho.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/puccho.py b/bitbake/lib/bb/ui/puccho.py index 7dffa5c3ba..2ac025303e 100644 --- a/bitbake/lib/bb/ui/puccho.py +++ b/bitbake/lib/bb/ui/puccho.py | |||
@@ -104,10 +104,10 @@ class MetaDataLoader(gobject.GObject): | |||
104 | gobject.idle_add (MetaDataLoader.emit_success_signal, | 104 | gobject.idle_add (MetaDataLoader.emit_success_signal, |
105 | self.loader) | 105 | self.loader) |
106 | 106 | ||
107 | except MetaDataLoader.LoaderThread.LoaderImportException, e: | 107 | except MetaDataLoader.LoaderThread.LoaderImportException as e: |
108 | gobject.idle_add (MetaDataLoader.emit_error_signal, self.loader, | 108 | gobject.idle_add (MetaDataLoader.emit_error_signal, self.loader, |
109 | "Repository metadata corrupt") | 109 | "Repository metadata corrupt") |
110 | except Exception, e: | 110 | except Exception as e: |
111 | gobject.idle_add (MetaDataLoader.emit_error_signal, self.loader, | 111 | gobject.idle_add (MetaDataLoader.emit_error_signal, self.loader, |
112 | "Unable to download repository metadata") | 112 | "Unable to download repository metadata") |
113 | print(e) | 113 | print(e) |
@@ -211,7 +211,7 @@ class BuildSetupDialog (gtk.Dialog): | |||
211 | # Build | 211 | # Build |
212 | button = gtk.Button ("_Build", None, True) | 212 | button = gtk.Button ("_Build", None, True) |
213 | image = gtk.Image () | 213 | image = gtk.Image () |
214 | image.set_from_stock (gtk.STOCK_EXECUTE,gtk.ICON_SIZE_BUTTON) | 214 | image.set_from_stock (gtk.STOCK_EXECUTE, gtk.ICON_SIZE_BUTTON) |
215 | button.set_image (image) | 215 | button.set_image (image) |
216 | self.add_action_widget (button, BuildSetupDialog.RESPONSE_BUILD) | 216 | self.add_action_widget (button, BuildSetupDialog.RESPONSE_BUILD) |
217 | button.show_all () | 217 | button.show_all () |