diff --git a/nova/api/validator.py b/nova/api/validator.py index 9bc51e86632b..12a0433c0f08 100644 --- a/nova/api/validator.py +++ b/nova/api/validator.py @@ -70,7 +70,7 @@ def validate_image_path(val): if val[0] == '/': return False - # make sure the image path if rfc3986 compliant + # make sure the image path is rfc3986 compliant # prepend '/' to make input validate if not validate_url_path('/' + val): return False