From 244baeb0ebe5864fcab5519abb90c27d2e155ff5 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Thu, 7 May 2015 12:56:53 -0700 Subject: [PATCH] matrix: fix Concat.index -- should be (item, {concat_items}) Previously, it just returned {concat_items} which isn't right. Signed-off-by: Samuel Just --- teuthology/matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/matrix.py b/teuthology/matrix.py index 3f76cea19..63c61607d 100644 --- a/teuthology/matrix.py +++ b/teuthology/matrix.py @@ -164,7 +164,7 @@ class Concat(Matrix): for submat in self.submats: for i in range(submat.size()): out = out | frozenset([submat.index(i)]) - return out + return (self.item, out) class Sum(Matrix): """ -- 2.47.3