From cf931d3d9f5a7aabb27a1cac6a621fb6ec749fd4 Mon Sep 17 00:00:00 2001 From: Jos Collin Date: Tue, 3 Oct 2017 17:29:43 +0530 Subject: [PATCH] script/ptl-tool.py: Fixed error message Signed-off-by: Jos Collin --- src/script/ptl-tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/ptl-tool.py b/src/script/ptl-tool.py index 29cc22a65b8..7694638c8aa 100755 --- a/src/script/ptl-tool.py +++ b/src/script/ptl-tool.py @@ -123,7 +123,7 @@ def build_branch(args): base_path = args.base_path + base base = filter(lambda r: r.path == base_path, G.refs)[0] except IndexError: - log.error("Branch base does not exist!") + log.error("Branch " + base + " does not exist!") sys.exit(1) # So we know that we're not on an old test branch, detach HEAD onto ref: -- 2.39.5