diff options
author | Rob Austein <sra@hactrn.net> | 2015-10-09 13:51:58 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-10-09 13:51:58 +0000 |
commit | 122d0b33982d94f8a6c96356462a2d6fa062d948 (patch) | |
tree | 1f142c63f575448d41c1548f5ae27813f55f3c54 /rpki/up_down.py | |
parent | 421546d23d86434190caa9bb301e5cb7e96d4889 (diff) |
Baby steps towards using new rpkidb models. Now that SAX is gone,
clean up some of the corresponding mess.
svn path=/branches/tk705/; revision=6105
Diffstat (limited to 'rpki/up_down.py')
-rw-r--r-- | rpki/up_down.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/rpki/up_down.py b/rpki/up_down.py index 21048116..fbd7b97f 100644 --- a/rpki/up_down.py +++ b/rpki/up_down.py @@ -158,11 +158,9 @@ def generate_error_response_from_exception(r_msg, e, q_type): generate_error_response(r_msg, code, e) -class cms_msg_no_sax(rpki.x509.XML_CMS_object): +class cms_msg(rpki.x509.XML_CMS_object): """ - Class to hold a CMS-signed up-down PDU. - - Name is a transition kludge: once we ditch SAX, this will become cms_msg. + CMS-signed up-down PDU. """ encoding = "UTF-8" |