From 0739be15657a3a38639fe8fbae16cdb21139fa5a Mon Sep 17 00:00:00 2001 From: Aanand Prasad Date: Fri, 6 Sep 2013 00:01:58 -0400 Subject: [PATCH] Remove custom error message for image 404 --- docker/client.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/docker/client.py b/docker/client.py index eb6df8b0..50692deb 100644 --- a/docker/client.py +++ b/docker/client.py @@ -239,9 +239,6 @@ class Client(requests.Session): def create_container_from_config(self, config): u = self._url("/containers/create") res = self._post_json(u, config) - if res.status_code == 404: - self._raise_for_status(res, explanation="{0} is an unrecognized image. Please pull the " - "image first.".format(config['Image'])) return self._result(res, True) def diff(self, container):