diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2013-05-13 16:34:28 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-15 19:27:11 +0300 |
commit | 941584f539846c0ea26c96f425d8eefe33db8a3b (patch) | |
tree | a2a4320349f7392acd265e6ab0af6557260d113d | |
parent | bd27cca7e6817e6cbf3cba38e05f0877e3f03d6a (diff) | |
download | 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>
-rw-r--r-- | meta/lib/oe/cachedpath.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/lib/oe/cachedpath.py b/meta/lib/oe/cachedpath.py index c7860ef4fb..0840cc4c3f 100644 --- a/meta/lib/oe/cachedpath.py +++ b/meta/lib/oe/cachedpath.py | |||
@@ -122,10 +122,8 @@ class CachedPath(object): | |||
122 | # minor reason when (say) a thousand readable directories are still | 122 | # minor reason when (say) a thousand readable directories are still |
123 | # left to visit. That logic is copied here. | 123 | # left to visit. That logic is copied here. |
124 | try: | 124 | try: |
125 | # Note that listdir and error are globals in this module due | ||
126 | # to earlier import-*. | ||
127 | names = os.listdir(top) | 125 | names = os.listdir(top) |
128 | except error as err: | 126 | except os.error as err: |
129 | if onerror is not None: | 127 | if onerror is not None: |
130 | onerror(err) | 128 | onerror(err) |
131 | return | 129 | return |