diff options
author | Aaron Rosen <arosen@nicira.com> | 2013-02-15 21:32:09 -0800 |
---|---|---|
committer | Aaron Rosen <arosen@nicira.com> | 2013-02-15 21:33:23 -0800 |
commit | a98aefef96d214e42a421d7b4ce6cbae5034c0ad (patch) | |
tree | 79a585f1eda98770184dc34b895e0c2515cb5c3a /nova/utils.py | |
parent | cc4cb69d02d42d1d52266d7273ad18d0ab757063 (diff) | |
download | nova-a98aefef96d214e42a421d7b4ce6cbae5034c0ad.tar.gz nova-a98aefef96d214e42a421d7b4ce6cbae5034c0ad.tar.xz nova-a98aefef96d214e42a421d7b4ce6cbae5034c0ad.zip |
clean up missing whitespace after ':'
Change-Id: I85a0348b978d4045ebb12a99f1bd9d5888a65b3b
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) |