summaryrefslogtreecommitdiffstats
path: root/nova/db
diff options
context:
space:
mode:
authorTodd Willey <todd@ansolabs.com>2011-03-23 00:31:50 -0400
committerTodd Willey <todd@ansolabs.com>2011-03-23 00:31:50 -0400
commit3796b5a8fc2baa9a35ebbc721735f22e952e6aa3 (patch)
tree5b4e899fc15477f9ee9a01519a8f4fba976ddf4a /nova/db
parent83e2424e1c2721dd0ba42ca279de80b6c881ec21 (diff)
Fix some crypto strangeness (\n in file_name field of certificates, wrong IMPL method for certificate_update).
Diffstat (limited to 'nova/db')
-rw-r--r--nova/db/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/db/api.py b/nova/db/api.py
index add5bd83e..afc1bff2f 100644
--- a/nova/db/api.py
+++ b/nova/db/api.py
@@ -214,7 +214,7 @@ def certificate_update(context, certificate_id, values):
Raises NotFound if service does not exist.
"""
- return IMPL.service_update(context, certificate_id, values)
+ return IMPL.certificate_update(context, certificate_id, values)
###################