summaryrefslogtreecommitdiffstats
path: root/nova/db
diff options
context:
space:
mode:
authorKei Masumoto <masumotok@nttdata.co.jp>2011-03-10 13:30:52 +0900
committerKei Masumoto <masumotok@nttdata.co.jp>2011-03-10 13:30:52 +0900
commitf0bb6d9fc47b92d335c7d7fa238dfd43f0dbdf69 (patch)
tree81f5f0cdee61e596ba96e8b5ded6132e28e9466a /nova/db
parent1b9ac145de54447f37cdea50ddd1dd028e5f57c1 (diff)
downloadnova-f0bb6d9fc47b92d335c7d7fa238dfd43f0dbdf69.tar.gz
nova-f0bb6d9fc47b92d335c7d7fa238dfd43f0dbdf69.tar.xz
nova-f0bb6d9fc47b92d335c7d7fa238dfd43f0dbdf69.zip
fixed based on reviewer's comment.
Diffstat (limited to 'nova/db')
-rw-r--r--nova/db/sqlalchemy/api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/db/sqlalchemy/api.py b/nova/db/sqlalchemy/api.py
index 8ea5062ae..f44ca0fa3 100644
--- a/nova/db/sqlalchemy/api.py
+++ b/nova/db/sqlalchemy/api.py
@@ -192,8 +192,8 @@ def service_get_all_compute_by_host(context, host):
all()
if not result:
- raise exception.NotFound(_("%s does not exist or not "
- "compute node.") % host)
+ raise exception.NotFound(_("%s does not exist or is not "
+ "a compute node.") % host)
return result