From a37ae30b9766df346ca57755530024a0b7d5f86b Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 7 May 2013 13:56:00 +0100 Subject: meta/lib/oe: Replace StandardError with Exception StandardError is removed in python3, replace with Exception class instead. Signed-off-by: Richard Purdie --- meta/lib/oe/license.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/lib/oe/license.py') diff --git a/meta/lib/oe/license.py b/meta/lib/oe/license.py index 173e319cd5..340da61102 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): -- cgit 1.2.3-korg