cert/manager.py not using crypto.fetch_crl

Fixes bug #1002212

Change-Id: Ie4021e9ce150a9806826d0934d30ecd0d994f7e0
This commit is contained in:
Zhongyue Luo
2012-05-21 17:01:15 +08:00
parent ebf523174f
commit 0d4c0e7fbc

View File

@@ -63,7 +63,7 @@ class CertManager(manager.Manager):
def fetch_crl(self, context, project_id):
"""Get crl for a project"""
return crypto.fetch_ca(project_id)
return crypto.fetch_crl(project_id)
def decrypt_text(self, context, project_id, text):
"""Decrypt base64 encoded text using the projects private key."""