1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Newstyle class

This commit is contained in:
Toshio Kuratomi 2014-12-18 13:43:55 -08:00 committed by Matt Clay
parent 4aaba45e29
commit d28cd02ab7

View file

@ -458,7 +458,7 @@ def check_dependencies(module):
module.fail_json(msg="The Ansible Docker module requires `docker-py` >= 0.3.0.")
class DockerManager:
class DockerManager(object):
counters = {'created':0, 'started':0, 'stopped':0, 'killed':0, 'removed':0, 'restarted':0, 'pull':0}
_capabilities = set()