summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2013-05-13 16:34:28 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-15 19:27:11 +0300
commit941584f539846c0ea26c96f425d8eefe33db8a3b (patch)
treea2a4320349f7392acd265e6ab0af6557260d113d /meta
parentbd27cca7e6817e6cbf3cba38e05f0877e3f03d6a (diff)
downloadast2050-yocto-poky-941584f539846c0ea26c96f425d8eefe33db8a3b.zip
ast2050-yocto-poky-941584f539846c0ea26c96f425d8eefe33db8a3b.tar.gz
cachedpath.py: global name 'error' is not defined
The error is not global since we don't use "from os import *", so it should be os.error. [YOCTO #4489] (From OE-Core rev: ac0e2781c2723257bd380cac170d4c8b97e36747) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oe/cachedpath.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/lib/oe/cachedpath.py b/meta/lib/oe/cachedpath.py
index c7860ef..0840cc4 100644
--- a/meta/lib/oe/cachedpath.py
+++ b/meta/lib/oe/cachedpath.py
@@ -122,10 +122,8 @@ class CachedPath(object):
# minor reason when (say) a thousand readable directories are still
# left to visit. That logic is copied here.
try:
- # Note that listdir and error are globals in this module due
- # to earlier import-*.
names = os.listdir(top)
- except error as err:
+ except os.error as err:
if onerror is not None:
onerror(err)
return
OpenPOWER on IntegriCloud