summaryrefslogtreecommitdiff
path: root/ironic_python_agent/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'ironic_python_agent/errors.py')
-rw-r--r--ironic_python_agent/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic_python_agent/errors.py b/ironic_python_agent/errors.py
index 11f769f0..d17c0d12 100644
--- a/ironic_python_agent/errors.py
+++ b/ironic_python_agent/errors.py
@@ -142,7 +142,7 @@ class ImageDownloadError(RESTError):
message = 'Error downloading image'
def __init__(self, image_id, msg):
- details = 'Download of image id {} failed: {}'.format(image_id, msg)
+ details = 'Download of image {} failed: {}'.format(image_id, msg)
self.secondary_message = msg
super(ImageDownloadError, self).__init__(details)