Skip to content

Commit fc17476

Browse files
committed
Fix typo in deprecated insert method. Fixes #595
s/fornat/format/
1 parent 329662c commit fc17476

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def insert(self, image, url, path):
730730
raise errors.DeprecatedMethod(
731731
'insert is not available for API version >=1.12'
732732
)
733-
api_url = self._url("/images/{0}/insert".fornat(image))
733+
api_url = self._url("/images/{0}/insert".format(image))
734734
params = {
735735
'url': url,
736736
'path': path

0 commit comments

Comments
 (0)