diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-02-18 09:21:23 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-02-18 09:21:23 +0000 |
commit | 1490831c45de876343ae4fc886ee1f974ec2615b (patch) | |
tree | 452bb6b29154eb1f6235933247610898dcbf2f3e /nova/utils.py | |
parent | d0c059e6b757f034f3b3e0a1fbe197e707738b31 (diff) | |
parent | a98aefef96d214e42a421d7b4ce6cbae5034c0ad (diff) | |
download | nova-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.py | 2 |
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) |