diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-07 13:55:55 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 14:04:18 +0100 |
commit | b010501cd089e649a68f683be0cf4d0aac90fbe3 (patch) | |
tree | ce5c7cba76051675e4a765dd677ffed372d4e33a /meta/lib/oe/cachedpath.py | |
parent | 3c104443506cb89d72944e46096a94a80838a707 (diff) | |
download | openembedded-core-b010501cd089e649a68f683be0cf4d0aac90fbe3.tar.gz openembedded-core-b010501cd089e649a68f683be0cf4d0aac90fbe3.tar.bz2 openembedded-core-b010501cd089e649a68f683be0cf4d0aac90fbe3.zip |
clases/lib: Use modern exception syntax
Update older code to use modern exception handling syntax which
is the form accepted by python 3.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/cachedpath.py')
-rw-r--r-- | meta/lib/oe/cachedpath.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/cachedpath.py b/meta/lib/oe/cachedpath.py index e350c8a70e..c7860ef4fb 100644 --- a/meta/lib/oe/cachedpath.py +++ b/meta/lib/oe/cachedpath.py @@ -125,7 +125,7 @@ class CachedPath(object): # Note that listdir and error are globals in this module due # to earlier import-*. names = os.listdir(top) - except error, err: + except error as err: if onerror is not None: onerror(err) return @@ -221,7 +221,7 @@ class CachedPath(object): file = self.__realpath_rel(root, file[(len(root) - 1):], root, loop_cnt, assume_dir) else: file = self.__realpath(file, root, loop_cnt, assume_dir)[0] - except OSError, e: + except OSError as e: if e.errno == errno.ELOOP: # make ELOOP more readable; without catching it, there will # be printed a backtrace with 100s of OSError exceptions |