From 3ff88d2631ca3ee5633739643e3e2a6940f0cc83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Pitucha?= Date: Tue, 23 Jun 2015 08:40:24 +1000 Subject: [PATCH] Fix comment typo Change-Id: I40998a48e57ffe1e4ef07e524825e4f51b1fd1b4 --- nova/api/validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/api/validator.py b/nova/api/validator.py index 9bc51e8663..12a0433c0f 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