summaryrefslogtreecommitdiff
path: root/docker/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'docker/errors.py')
-rw-r--r--docker/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/errors.py b/docker/errors.py
index 95c462b..d9b197d 100644
--- a/docker/errors.py
+++ b/docker/errors.py
@@ -22,7 +22,7 @@ def create_api_error_from_http_exception(e):
cls = APIError
if response.status_code == 404:
if explanation and ('No such image' in str(explanation) or
- 'not found: does not exist or no read access'
+ 'not found: does not exist or no pull access'
in str(explanation)):
cls = ImageNotFound
else: