diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-09-21 06:30:08 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-09-21 04:31:15 +0000 |
commit | aec0a24a1a2bfb677a3cda5865e4b9c8e2011b68 (patch) | |
tree | 80610e5a3cdb116d2a2c8ee4581c525ec453c990 | |
parent | a8ac75302d82a69667611ba1c2e654cf545eb277 (diff) |
PAL: Dislpay job name in err msg
Change-Id: Id7509bd11ac32cc3f72e71c8826ccacdf1fe95a0
Signed-off-by: Tibor Frank <tifrank@cisco.com>
-rw-r--r-- | resources/tools/presentation/specification_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/specification_parser.py b/resources/tools/presentation/specification_parser.py index 37b26eb0d5..0199796abd 100644 --- a/resources/tools/presentation/specification_parser.py +++ b/resources/tools/presentation/specification_parser.py @@ -314,7 +314,7 @@ class Specification: return build_nr except ValueError as err: raise PresentationError( - f"Not possible to get the number of the build number. Reason:\n" + f"Not possible to get the build number of {job}. Reason:\n" f"{repr(err)}" ) |