diff options
| author | Maxime Petazzoni <maxime.petazzoni@bulix.org> | 2015-05-11 09:45:31 -0700 |
|---|---|---|
| committer | Maxime Petazzoni <maxime.petazzoni@bulix.org> | 2015-05-11 09:45:31 -0700 |
| commit | fc174769aa2d9df678c407ea8bf222a2ddb58b2c (patch) | |
| tree | 496cc1bbf09db93a64d34b5425049e1656797476 /docker | |
| parent | 329662c53ed13254449ef55742d2e8d577e0dd97 (diff) | |
| download | docker-py-fc174769aa2d9df678c407ea8bf222a2ddb58b2c.tar.gz | |
Fix typo in deprecated insert method. Fixes #595
s/fornat/format/
Diffstat (limited to 'docker')
| -rw-r--r-- | docker/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/client.py b/docker/client.py index 4775ee7..56a60a9 100644 --- a/docker/client.py +++ b/docker/client.py @@ -730,7 +730,7 @@ class Client(requests.Session): raise errors.DeprecatedMethod( 'insert is not available for API version >=1.12' ) - api_url = self._url("/images/{0}/insert".fornat(image)) + api_url = self._url("/images/{0}/insert".format(image)) params = { 'url': url, 'path': path |
