aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2008-11-20 13:46:55 -0700
committerChris Larson <clarson@kergoth.com>2008-11-20 13:46:55 -0700
commitf31d2817b4a87cc2987886cb67e5d736d64bdfe1 (patch)
tree68949dee53ecece673ebe3a161fd19b869de0dff /classes
parenta24386ba41206b3ac01cdb6ae11282a8ae978184 (diff)
downloadopenembedded-f31d2817b4a87cc2987886cb67e5d736d64bdfe1.tar.gz
base.bbclass: fix a syntax error in one of distclean's exception handlers
Diffstat (limited to 'classes')
-rw-r--r--classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass
index 2c03c8fcb0..b2b60850b3 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"