[oe-commits] Chris Larson : base.bbclass: fix a syntax error in one of distclean' s exception handlers

GIT User account git at amethyst.openembedded.net
Thu Nov 20 20:47:47 UTC 2008


Module: openembedded.git
Branch: org.openembedded.dev
Commit: f31d2817b4a87cc2987886cb67e5d736d64bdfe1
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=f31d2817b4a87cc2987886cb67e5d736d64bdfe1

Author: Chris Larson <clarson at kergoth.com>
Date:   Thu Nov 20 13:46:55 2008 -0700

base.bbclass: fix a syntax error in one of distclean's exception handlers

---

 classes/base.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/base.bbclass b/classes/base.bbclass
index 2c03c8f..b2b6085 100644
--- a/classes/base.bbclass
+++ b/classes/base.bbclass
@@ -528,7 +528,7 @@ python base_do_distclean() {
 				if os.path.exists(local):
 					os.remove(local)
 			except OSError, e:
-				bb.note("Error in removal: %s" % (local, e))
+				bb.note("Error in removal: %s" % e)
 }
 
 SCENEFUNCS += "base_scenefunction"





More information about the Openembedded-commits mailing list