From 50eec691adef6ce965e86ba1bc39d46e35f86ae7 Mon Sep 17 00:00:00 2001 From: Jonathan Balls Date: Mon, 4 Jul 2016 19:31:32 +0100 Subject: [PATCH] Added description function --- cabot_check_skeleton/plugin.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cabot_check_skeleton/plugin.py b/cabot_check_skeleton/plugin.py index d4628a8..c0bfcea 100644 --- a/cabot_check_skeleton/plugin.py +++ b/cabot_check_skeleton/plugin.py @@ -47,3 +47,6 @@ def run(self, check, result): result.error = u'%s is not in the list of bones' % check.bone_name return result + def description(self, check): + return '%s in list of bones.' % check.bone_name +