From 719d01067ef8d4ff52d54f4dfd25b098fa303856 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 14 Apr 2015 19:42:52 -0700 Subject: [PATCH] Use six to assign metaclass for py2 and py3 compat --- v2/ansible/plugins/inventory/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/v2/ansible/plugins/inventory/__init__.py b/v2/ansible/plugins/inventory/__init__.py index 41e8578ee70..03fd89429b4 100644 --- a/v2/ansible/plugins/inventory/__init__.py +++ b/v2/ansible/plugins/inventory/__init__.py @@ -23,6 +23,9 @@ __metaclass__ = type from abc import ABCMeta, abstractmethod +from six import add_metaclass + +@add_metaclass(ABCMeta) class InventoryParser: '''Abstract Base Class for retrieving inventory information @@ -31,7 +34,6 @@ class InventoryParser: InventoryParser.hosts for a mapping of Host objects and InventoryParser.Groups for a mapping of Group objects. ''' - __metaclass__ = ABCMeta def __init__(self, inven_source): '''