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>
This commit is contained in:
Richard Purdie 2013-05-07 13:56:00 +01:00
parent 3512f797f9
commit feeffdb5b6
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ import ast
import re import re
from fnmatch import fnmatchcase as fnmatch from fnmatch import fnmatchcase as fnmatch
class LicenseError(StandardError): class LicenseError(Exception):
pass pass
class LicenseSyntaxError(LicenseError): class LicenseSyntaxError(LicenseError):

View File

@ -6,10 +6,10 @@ from bb.process import Popen, ExecutionError
logger = logging.getLogger('BitBake.OE.Terminal') logger = logging.getLogger('BitBake.OE.Terminal')
class UnsupportedTerminal(StandardError): class UnsupportedTerminal(Exception):
pass pass
class NoSupportedTerminals(StandardError): class NoSupportedTerminals(Exception):
pass pass