From 618004f87bcf64e3744e7b9fae71b6cb856f737f Mon Sep 17 00:00:00 2001 From: Cove Schneider Date: Sun, 13 Oct 2013 21:34:58 -0700 Subject: [PATCH] clean up a few warnings --- library/cloud/docker | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/library/cloud/docker b/library/cloud/docker index 17de1fd36d9..5862f6b8422 100644 --- a/library/cloud/docker +++ b/library/cloud/docker @@ -27,7 +27,7 @@ DOCUMENTATION = ''' module: docker short_description: manage docker containers description: - - Manage the life cycle of docker containers. + - Manage the life cycle of docker containers. This module has a dependency on the docker-py python module. options: count: description: @@ -133,7 +133,6 @@ options: required: false default: aliases: [] -requirements: [ "docker-py" ] author: Cove Schneider ''' @@ -183,7 +182,6 @@ Stop and remove all of the running tomcat containers: try: import sys - import json import docker.client from requests.exceptions import * from urlparse import urlparse @@ -282,7 +280,7 @@ class AnsibleDocker: def do_create(count, params): results = [] - for i in range(count): + for _ in range(count): result = self.client.create_container(**params) self.increment_counter('created') results.append(result)