base.bbclass: fix a syntax error in one of distclean's exception handlers
authorChris Larson <clarson@kergoth.com>
Thu, 20 Nov 2008 20:46:55 +0000 (13:46 -0700)
committerChris Larson <clarson@kergoth.com>
Thu, 20 Nov 2008 20:46:55 +0000 (13:46 -0700)
classes/base.bbclass

index 2c03c8f..b2b6085 100644 (file)
@@ -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"