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/runqueue.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/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 9881315b9d..de1160eb87 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -852,7 +852,7 @@ class RunQueue: | |||
852 | return False | 852 | return False |
853 | 853 | ||
854 | if self.state is runQueueChildProcess: | 854 | if self.state is runQueueChildProcess: |
855 | print "Child process" | 855 | print("Child process") |
856 | return False | 856 | return False |
857 | 857 | ||
858 | # Loop | 858 | # Loop |
@@ -1194,5 +1194,5 @@ class runQueuePipe(): | |||
1194 | while self.read(): | 1194 | while self.read(): |
1195 | continue | 1195 | continue |
1196 | if len(self.queue) > 0: | 1196 | if len(self.queue) > 0: |
1197 | print "Warning, worker left partial message" | 1197 | print("Warning, worker left partial message") |
1198 | os.close(self.fd) | 1198 | os.close(self.fd) |