summaryrefslogtreecommitdiffstats
path: root/nova/utils.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-02-18 09:21:23 +0000
committerGerrit Code Review <review@openstack.org>2013-02-18 09:21:23 +0000
commit1490831c45de876343ae4fc886ee1f974ec2615b (patch)
tree452bb6b29154eb1f6235933247610898dcbf2f3e /nova/utils.py
parentd0c059e6b757f034f3b3e0a1fbe197e707738b31 (diff)
parenta98aefef96d214e42a421d7b4ce6cbae5034c0ad (diff)
downloadnova-1490831c45de876343ae4fc886ee1f974ec2615b.tar.gz
nova-1490831c45de876343ae4fc886ee1f974ec2615b.tar.xz
nova-1490831c45de876343ae4fc886ee1f974ec2615b.zip
Merge "clean up missing whitespace after ':'"
Diffstat (limited to 'nova/utils.py')
-rw-r--r--nova/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/utils.py b/nova/utils.py
index 699544daa..aaf258142 100644
--- a/nova/utils.py
+++ b/nova/utils.py
@@ -1363,7 +1363,7 @@ def check_string_length(value, name, min_length=0, max_length=None):
msg = _("%s is not a string or unicode") % name
raise exception.InvalidInput(message=msg)
- if len(value) < min_length:
+ if len(value) < min_length:
msg = _("%(name)s has less than %(min_length)s "
"characters.") % locals()
raise exception.InvalidInput(message=msg)