diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-06-18 09:21:31 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:37 +0100 |
commit | 526837e1c16e7d5ced40bea6463e58641c94ba05 (patch) | |
tree | f9249f119f53e3ef91f15b2829cdfcf6d1601edf /bitbake/bin | |
parent | 2f0a485bd4857d6f26eccc94480a6db8bfa987a9 (diff) | |
download | poky-526837e1c16e7d5ced40bea6463e58641c94ba05.tar.gz |
Move serverConnection.terminate() back into the finally
(Bitbake rev: 58e1b0a5dbd0f1ca137ad7ed1bd7ad9975a20fb7)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 2fe9c79054..54228518d7 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -206,8 +206,9 @@ Default BBFILES are the .bb files in the current directory.""") | |||
206 | except Exception, e: | 206 | except Exception, e: |
207 | print "FATAL: Unable to start to '%s' UI: %s" % (ui, e) | 207 | print "FATAL: Unable to start to '%s' UI: %s" % (ui, e) |
208 | raise | 208 | raise |
209 | finally: | ||
210 | serverConnection.terminate() | ||
209 | 211 | ||
210 | serverConnection.terminate() | ||
211 | return return_value | 212 | return return_value |
212 | 213 | ||
213 | if __name__ == "__main__": | 214 | if __name__ == "__main__": |