From 94f9745f0c04fc12b22edf0ee1f864d56e9c9cb2 Mon Sep 17 00:00:00 2001 From: Sam Zuk Date: Tue, 14 Jun 2022 17:06:14 +0000 Subject: [Minor] Fix misspellings of "insufficient" In a few places in the codebase, "insufficient" is misspelled as "insufficent," which includes function names and exception class names. This can be inconvenient for writing and debugging code, in which case one would raise an exception/call a function and get an error that is resolved by intentionally misspelling the function call. The changes made here are mostly to the names of exceptions and functions but also include some other instances of this misspelling in docstrings, policy descriptions, etc. There were also some strings describing policies in ironic/common/policy.py that were missing spaces, which were also fixed. Story: 2010089 Task: 45604 Change-Id: I7b65c449d5d30ca30f537a95a3ffd365492e0274 --- ironic/drivers/modules/deploy_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ironic/drivers/modules') diff --git a/ironic/drivers/modules/deploy_utils.py b/ironic/drivers/modules/deploy_utils.py index f6883249f..856a7f25b 100644 --- a/ironic/drivers/modules/deploy_utils.py +++ b/ironic/drivers/modules/deploy_utils.py @@ -818,7 +818,7 @@ def get_image_instance_info(node): error_msg = (_("Cannot validate image information for node %s because one " "or more parameters are missing from its instance_info and " - "insufficent information is present to boot from a remote " + "insufficient information is present to boot from a remote " "volume") % node.uuid) check_for_missing_params(info, error_msg) -- cgit v1.2.1