From 27ed157b8b0b97df63d70fe93c77b6351b74b620 Mon Sep 17 00:00:00 2001 From: hgangwx Date: Sun, 27 Dec 2015 19:22:07 +0800 Subject: [PATCH] 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 --- tools/db/schema_diff.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/db/schema_diff.py b/tools/db/schema_diff.py index ca393874f5bc..018569f49cd4 100755 --- a/tools/db/schema_diff.py +++ b/tools/db/schema_diff.py @@ -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)()