Fix the patch.bbclass error handling in a couple of the error paths by changing the semantics of the PatchError exception.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@627 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Chris Larson 2006-08-23 08:50:26 +00:00
parent c69404a7d5
commit 056b43353e
1 changed files with 3 additions and 4 deletions

View File

@ -52,12 +52,11 @@ def patch_init():
os.chdir(olddir)
class PatchError(Exception):
def __init__(self, patch, msg):
def __init__(self, msg):
self.msg = msg
self.patch = patch
def __str__(self):
return "Patch Error: patch %s: %s" % (os.path.basename(self.patch.file), self.msg)
return "Patch Error: %s" % self.msg
import bb, bb.data, bb.fetch
@ -231,7 +230,7 @@ def patch_init():
shutil.copyfile(patch["quiltfile"], patch["file"])
else:
raise PatchError(patch, "Unable to do a remote refresh of %s, unsupported remote url scheme %s." % (os.path.basename(patch["quiltfile"]), type))
raise PatchError("Unable to do a remote refresh of %s, unsupported remote url scheme %s." % (os.path.basename(patch["quiltfile"]), type))
else:
# quilt refresh
args = ["refresh"]