Older python-six from early RHEL and ubuntu do not have add_metaclass but do have with_metaclass

This commit is contained in:
Toshio Kuratomi 2015-06-03 13:27:31 -07:00
parent f3ccff42e5
commit 7dd3ef7b60
3 changed files with 6 additions and 9 deletions

View file

@ -20,11 +20,10 @@ __metaclass__ = type
from abc import ABCMeta, abstractmethod
from six import add_metaclass
from six import with_metaclass
@add_metaclass(ABCMeta)
class BaseCacheModule:
class BaseCacheModule(with_metaclass(ABCMeta, object)):
@abstractmethod
def get(self, key):