summaryrefslogtreecommitdiffstats
path: root/python-dockering/dockering/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'python-dockering/dockering/core.py')
-rw-r--r--python-dockering/dockering/core.py2
1 files changed, 1 insertions, 1 deletions
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?