summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorhgangwx <hgangwx@cn.ibm.com>2015-12-27 19:22:07 +0800
committerhgangwx <hgangwx@cn.ibm.com>2015-12-27 19:22:07 +0800
commit27ed157b8b0b97df63d70fe93c77b6351b74b620 (patch)
tree5122f2d570adcf6c2c1b2d6cc9f52b96f3301e1a /tools
parentc1a2f49c112cba1b2c58087aabbfb33a8b2a0dd5 (diff)
downloadnova-27ed157b8b0b97df63d70fe93c77b6351b74b620.tar.gz
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
Diffstat (limited to 'tools')
-rwxr-xr-xtools/db/schema_diff.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/db/schema_diff.py b/tools/db/schema_diff.py
index ca393874f5..018569f49c 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)()