diff options
author | huwenhui <huwenhui@cmss.chinamobile.com> | 2020-05-12 19:58:37 +0800 |
---|---|---|
committer | huwenhui <huwenhui@cmss.chinamobile.com> | 2020-05-13 09:30:22 +0800 |
commit | bb39f20d36cd85c53a89eb0c2bc7f00c128b00d3 (patch) | |
tree | 25d7ee238b85ec8a3caea4b3e4a9fb15b914944f /ironic/drivers/modules/irmc | |
parent | 855986c0244d31f02cc6712b4669b2069ae3bcc1 (diff) | |
download | ironic-bb39f20d36cd85c53a89eb0c2bc7f00c128b00d3.tar.gz |
Fix the wrong description
The description about the method "__is_image_href_ordinary_file_name"
should be "Check if image_href is an ordinary file name" not "Check if
image_href is a ordinary file name", Fix the error.
Change-Id: I40e1058e24db39a9d11ef8c895fc907e7b749f94
Diffstat (limited to 'ironic/drivers/modules/irmc')
-rw-r--r-- | ironic/drivers/modules/irmc/boot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/drivers/modules/irmc/boot.py b/ironic/drivers/modules/irmc/boot.py index e23ee4961..f36df670a 100644 --- a/ironic/drivers/modules/irmc/boot.py +++ b/ironic/drivers/modules/irmc/boot.py @@ -87,7 +87,7 @@ COMMON_PROPERTIES.update(OPTIONAL_PROPERTIES) def _is_image_href_ordinary_file_name(image_href): - """Check if image_href is a ordinary file name. + """Check if image_href is an ordinary file name. This method judges if image_href is an ordinary file name or not, which is a file supposed to be stored in share file system. |