Misspelling in message

Misspelling in the message:
"You have uncommited changes"
Should be: "You have uncommitted changes"

Totally 2 occasions in Nova base code.

Change-Id: If0ad3163f3b9db3f31f7e9fa40245282c1a0acb4
This commit is contained in:
hgangwx 2015-12-27 19:22:07 +08:00
parent c1a2f49c11
commit 27ed157b8b

View File

@ -277,9 +277,9 @@ def main():
db_url, orig_branch, orig_version, new_branch, new_version = options
# Since we're going to be switching branches, ensure user doesn't have any
# uncommited changes
# uncommitted changes
if git_has_uncommited_changes():
die("You have uncommited changes. Please commit them before running "
die("You have uncommitted changes. Please commit them before running "
"this command.")
db_driver = _get_db_driver_class(db_url)()