summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2016-01-29 17:26:10 -0800
committerJoffrey F <joffrey@docker.com>2016-01-29 17:26:10 -0800
commitcf5755da459a562078293f611daf2fdc2f70e146 (patch)
treeb71a91a2b1d6e96b19b93b8efca36ddb783e6340
parent818291ecbbc9a653f11881d9b2c1d04db868f20e (diff)
downloaddocker-py-914_hostconfig_start.tar.gz
Update outdated error message914_hostconfig_start
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r--docker/utils/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/utils/utils.py b/docker/utils/utils.py
index dc46f1e..07d57d1 100644
--- a/docker/utils/utils.py
+++ b/docker/utils/utils.py
@@ -889,7 +889,7 @@ def create_container_config(
if compare_version('1.10', version) >= 0:
message = ('{0!r} parameter has no effect on create_container().'
- ' It has been moved to start()')
+ ' It has been moved to host_config')
if dns is not None:
raise errors.InvalidVersion(message.format('dns'))
if volumes_from is not None: