From 345985515987f494a27e70f18feeffedf87fbd56 Mon Sep 17 00:00:00 2001 From: Agata Murawska <agatamurawska@google.com> Date: Fri, 28 Oct 2011 13:22:02 +0200 Subject: [PATCH] Fixed typo in _VerifyResultRow Signed-off-by: Agata Murawska <agatamurawska@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/query.py b/lib/query.py index 1551f1d62..d8b6c68c4 100644 --- a/lib/query.py +++ b/lib/query.py @@ -763,7 +763,7 @@ def _VerifyResultRow(fields, row): elif value is not None: errs.append("abnormal field %s has a non-None value" % fdef.name) assert not errs, ("Failed validation: %s in row %s" % - (utils.CommaJoin(errors), row)) + (utils.CommaJoin(errs), row)) def _FieldDictKey((fdef, _, flags, fn)): -- GitLab