From 74d635ba6beeca4f9c7b7f8586c1a848a8582c11 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 16 Jan 2018 16:07:22 -0800 Subject: [PATCH] Add missing code to yamllint messages. --- test/runner/lib/sanity/yamllint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/runner/lib/sanity/yamllint.py b/test/runner/lib/sanity/yamllint.py index 4e5f8467dd..c9a19edba8 100644 --- a/test/runner/lib/sanity/yamllint.py +++ b/test/runner/lib/sanity/yamllint.py @@ -85,6 +85,7 @@ class YamllintTest(SanitySingleVersion): results = json.loads(stdout)['messages'] results = [SanityMessage( + code=r['code'], message=r['message'], path=r['path'], line=int(r['line']),