From: Cliff Brake <[email protected]>

causes exceptions to not be handled after the finally statement

Signed-off-by: Cliff Brake <[email protected]>
---
 bin/bitbake |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bin/bitbake b/bin/bitbake
index a6ac45d..e824ad2 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -195,9 +195,9 @@ Default BBFILES are the .bb files in the current 
directory.""")
         except Exception, e:
             print "FATAL: Unable to start to '%s' UI: %s" % (ui, e)
             raise
-    finally:
-        serverConnection.terminate()
-        return return_value
+
+    serverConnection.terminate()
+    return return_value
 
 if __name__ == "__main__":
     ret = main()
-- 
1.7.0.4

_______________________________________________
Bitbake-dev mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/bitbake-dev

Reply via email to