From: Ed Bartosh Date: Mon, 18 Jan 2016 12:22:43 +0000 (+0200) Subject: wic: improve processing of parseing errors X-Git-Tag: 2016-4~1525 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=549c76ebda9afba0771d6d2c9b0b83f7a479c626;p=openembedded-core.git wic: improve processing of parseing errors Caught argparse.ArgumentError Included .ks file name and line number into the error messages. Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/wic/kickstart.py b/scripts/lib/wic/kickstart.py index 7f0105dd07..5d3a572a77 100644 --- a/scripts/lib/wic/kickstart.py +++ b/scripts/lib/wic/kickstart.py @@ -27,7 +27,7 @@ import shlex -from argparse import ArgumentParser, ArgumentTypeError +from argparse import ArgumentParser, ArgumentError, ArgumentTypeError from wic.partition import Partition @@ -113,11 +113,16 @@ class KickStart(object): line = line.strip() lineno += 1 if line and line[0] != '#': - parsed = parser.parse_args(shlex.split(line)) + try: + parsed = parser.parse_args(shlex.split(line)) + except ArgumentError as err: + raise KickStartError('%s:%d: %s' % \ + (confpath, lineno, err)) if line.startswith('part'): self.partitions.append(Partition(parsed, lineno)) else: if not self.bootloader: self.bootloader = parsed else: - raise KickStartError("Error: more than one bootloader specified") + raise KickStartError("%s:%d: more than one bootloader "\ + "specified" % (confpath, lineno))