From e11be5dc15e6800ed6111b7773b9e44571343207 Mon Sep 17 00:00:00 2001 From: Michael Hwang Date: Thu, 21 Sep 2017 12:19:32 -0400 Subject: Fix tox to give more accurate coverage reports * Also attempted to get sonar working * Fixed minor things along the way Change-Id: I434c0d791140e75cd5997be0cc3fefce7ccc292f Issue-Id: DCAEGEN2-60 Signed-off-by: Michael Hwang --- python-dockering/dockering/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python-dockering/dockering/core.py') diff --git a/python-dockering/dockering/core.py b/python-dockering/dockering/core.py index 9ef1ae3..d82e346 100644 --- a/python-dockering/dockering/core.py +++ b/python-dockering/dockering/core.py @@ -104,7 +104,7 @@ def start_container(client, container): # TODO: Have logic to inspect response and through NonRecoverableError # when start fails. Docker-py docs don't quickly tell me what the # response looks like. - response = client.start(container=container["Id"]) + client.start(container=container["Id"]) utils.logger.info("Container started: {0}".format(container["Id"])) # TODO: Maybe check stats? -- cgit 1.2.3-korg