From: Richard Purdie Date: Tue, 7 May 2013 12:56:00 +0000 (+0100) Subject: meta/lib/oe: Replace StandardError with Exception X-Git-Tag: 2015-4~6594 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a37ae30b9766df346ca57755530024a0b7d5f86b;p=openembedded-core.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 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): diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py index aecf4e89d0..28470e3e1e 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