summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/license.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-07 13:56:00 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-09 14:06:51 +0100
commitfeeffdb5b60bec099c139b6a36b7788ecf7212bf (patch)
tree0f7e87c76c8e1cd769fec8d80ddf6304d37cac2b /meta/lib/oe/license.py
parent3512f797f92f0d51bf3af83bf5126466e2e0cc15 (diff)
downloadast2050-yocto-poky-feeffdb5b60bec099c139b6a36b7788ecf7212bf.zip
ast2050-yocto-poky-feeffdb5b60bec099c139b6a36b7788ecf7212bf.tar.gz
meta/lib/oe: Replace StandardError with Exception
StandardError is removed in python3, replace with Exception class instead. (From OE-Core rev: a37ae30b9766df346ca57755530024a0b7d5f86b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/license.py')
-rw-r--r--meta/lib/oe/license.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/license.py b/meta/lib/oe/license.py
index 173e319..340da61 100644
--- a/meta/lib/oe/license.py
+++ b/meta/lib/oe/license.py
@@ -5,7 +5,7 @@ import ast
import re
from fnmatch import fnmatchcase as fnmatch
-class LicenseError(StandardError):
+class LicenseError(Exception):
pass
class LicenseSyntaxError(LicenseError):
OpenPOWER on IntegriCloud