From: Richard Purdie Date: Tue, 7 May 2013 12:56:00 +0000 (+0100) Subject: meta/lib/oe: Replace StandardError with Exception X-Git-Tag: yocto-4.0~32975 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a37ae30b9766df346ca57755530024a0b7d5f86b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git meta/lib/oe: Replace StandardError with Exception StandardError is removed in python3, replace with Exception class instead. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/license.py b/meta/lib/oe/license.py index 173e319cd58..340da61102f 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): diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py index aecf4e89d08..28470e3e1e0 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py @@ -6,10 +6,10 @@ from bb.process import Popen, ExecutionError logger = logging.getLogger('BitBake.OE.Terminal') -class UnsupportedTerminal(StandardError): +class UnsupportedTerminal(Exception): pass -class NoSupportedTerminals(StandardError): +class NoSupportedTerminals(Exception): pass