diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-09 19:46:14 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:33 +0100 |
commit | ad543e2e41b7e86d83cf0518b096ef82627bf891 (patch) | |
tree | f8f3c5d4f759f3169a937db1da6858a11aa938fa /bitbake/lib/bb/ui/puccho.py | |
parent | 978b5c946683885a64ee9e7c2064ff696f05cddb (diff) | |
download | poky-ad543e2e41b7e86d83cf0518b096ef82627bf891.tar.gz |
Apply the 2to3 print function transform
(Bitbake rev: ff2e28d0d9723ccd0e9dd635447b6d889cc9f597)
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 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/bb/ui/puccho.py b/bitbake/lib/bb/ui/puccho.py index dfcb0f7651..7dffa5c3ba 100644 --- a/bitbake/lib/bb/ui/puccho.py +++ b/bitbake/lib/bb/ui/puccho.py | |||
@@ -110,7 +110,7 @@ class MetaDataLoader(gobject.GObject): | |||
110 | except Exception, e: | 110 | except Exception, 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) |
114 | 114 | ||
115 | def try_fetch_from_url (self, url): | 115 | def try_fetch_from_url (self, url): |
116 | # Try and download the metadata. Firing a signal if successful | 116 | # Try and download the metadata. Firing a signal if successful |
@@ -326,8 +326,8 @@ class MainWindow (gtk.Window): | |||
326 | conf = None | 326 | conf = None |
327 | if (response_id == BuildSetupDialog.RESPONSE_BUILD): | 327 | if (response_id == BuildSetupDialog.RESPONSE_BUILD): |
328 | dialog.update_configuration() | 328 | dialog.update_configuration() |
329 | print dialog.configuration.machine, dialog.configuration.distro, \ | 329 | print(dialog.configuration.machine, dialog.configuration.distro, \ |
330 | dialog.configuration.image | 330 | dialog.configuration.image) |
331 | conf = dialog.configuration | 331 | conf = dialog.configuration |
332 | 332 | ||
333 | dialog.destroy() | 333 | dialog.destroy() |
@@ -383,11 +383,11 @@ def running_build_succeeded_cb (running_build, manager): | |||
383 | # BuildManager. It can then hook onto the signals directly and drive | 383 | # BuildManager. It can then hook onto the signals directly and drive |
384 | # interesting things it cares about. | 384 | # interesting things it cares about. |
385 | manager.notify_build_succeeded () | 385 | manager.notify_build_succeeded () |
386 | print "build succeeded" | 386 | print("build succeeded") |
387 | 387 | ||
388 | def running_build_failed_cb (running_build, manager): | 388 | def running_build_failed_cb (running_build, manager): |
389 | # As above | 389 | # As above |
390 | print "build failed" | 390 | print("build failed") |
391 | manager.notify_build_failed () | 391 | manager.notify_build_failed () |
392 | 392 | ||
393 | def init (server, eventHandler): | 393 | def init (server, eventHandler): |