From a31c124fecd1ed10e7107ed85bcc37cf3603a1a8 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Thu, 18 Jun 2015 15:06:24 -0700 Subject: [PATCH] suite.py: say *which* path is invalid in _build_matrix Signed-off-by: Dan Mick --- teuthology/suite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index fa002902b3..18000c44ce 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -916,7 +916,7 @@ def _build_matrix(path, _isfile=os.path.isfile, submat) submats.append(submat) return matrix.Sum(item, submats) - assert False, "Invalid path seen in _build_matrix" + assert False, "Invalid path %s seen in _build_matrix" % path return None -- 2.39.5