diff options
author | Joffrey F <f.joffrey@gmail.com> | 2016-12-02 15:20:34 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-02 15:20:34 -0800 |
commit | d56b2d3dc87b3d12fad197fa2cd19f3ea3f7e5d1 (patch) | |
tree | 96ed159e6603cfc02c296129c9e2c4245e6b721a /docker/client.py | |
parent | 32cd0161b67b3ade2e079093ccfb59e56f242437 (diff) | |
parent | 94083f25acfa38d68e6dbb08c81d51021191c95b (diff) | |
download | docker-py-d56b2d3dc87b3d12fad197fa2cd19f3ea3f7e5d1.tar.gz |
Merge pull request #1315 from bfirsh/rename-docker-py-to-docker-sdk-python
Start to rename docker-py to docker-sdk-python
Diffstat (limited to 'docker/client.py')
-rw-r--r-- | docker/client.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/client.py b/docker/client.py index b271eb7..171175d 100644 --- a/docker/client.py +++ b/docker/client.py @@ -158,9 +158,9 @@ class DockerClient(object): s = ["'DockerClient' object has no attribute '{}'".format(name)] # If a user calls a method on APIClient, they if hasattr(APIClient, name): - s.append("In docker-py 2.0, this method is now on the object " - "APIClient. See the low-level API section of the " - "documentation for more details.".format(name)) + s.append("In Docker SDK for Python 2.0, this method is now on the " + "object APIClient. See the low-level API section of the " + "documentation for more details.") raise AttributeError(' '.join(s)) |