1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 12:29:55 +00:00

Move MalformedUrl, VarExpandError into appropriate modules.

(Bitbake rev: e616483b237dafff7f90ba1c09e9ee7c383a2e47)

Signed-off-by: Chris Larson <clarson@kergoth.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson
2009-07-19 09:49:36 -07:00
committed by Richard Purdie
parent 9a0da388ce
commit a3012e1ca9
3 changed files with 9 additions and 5 deletions
+3 -5
View File
@@ -80,11 +80,9 @@ if "BBDEBUG" in os.environ:
if level:
bb.msg.set_debug_level(level)
class VarExpandError(Exception):
pass
class MalformedUrl(Exception):
"""Exception raised when encountering an invalid url"""
# For compatibility
from bb.fetch import MalformedUrl
from bb.data import VarExpandError
#######################################################################