From fba34c9ea446bb15f4cd8f366c5b85fb313e7337 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Thu, 21 Feb 2013 11:29:18 +0100 Subject: [PATCH] plugin: don't use @staticmethod with abc Otherwise that breaks the check Change-Id: I30d652892d54bb05d45e90eaa97bafc66a584de0 Signed-off-by: Julien Danjou --- ceilometer/plugin.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ceilometer/plugin.py b/ceilometer/plugin.py index 9e46dc4f..c1cd5fe1 100644 --- a/ceilometer/plugin.py +++ b/ceilometer/plugin.py @@ -81,9 +81,8 @@ class PollsterBase(PluginBase): __metaclass__ = abc.ABCMeta - @staticmethod @abc.abstractmethod - def get_counter_names(): + def get_counter_names(self): """Return a sequence of Counter names supported by the pollster.""" @abc.abstractmethod