summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/types.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-07 13:55:55 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-09 14:04:18 +0100
commitb010501cd089e649a68f683be0cf4d0aac90fbe3 (patch)
treece5c7cba76051675e4a765dd677ffed372d4e33a /meta/lib/oe/types.py
parent3c104443506cb89d72944e46096a94a80838a707 (diff)
downloadopenembedded-core-contrib-b010501cd089e649a68f683be0cf4d0aac90fbe3.tar.gz
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/types.py')
-rw-r--r--meta/lib/oe/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/types.py b/meta/lib/oe/types.py
index ea53df9bf2..5dac9de239 100644
--- a/meta/lib/oe/types.py
+++ b/meta/lib/oe/types.py
@@ -92,7 +92,7 @@ def regex(value, regexflags=None):
try:
return re.compile(value, flagval)
- except re.error, exc:
+ except re.error as exc:
raise ValueError("Invalid regex value '%s': %s" %
(value, exc.args[0]))