From 18f25c3a44b96f6603624a6d81f6c521a3be32d0 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Wed, 17 Oct 2012 23:06:19 +0000 Subject: Oops, check_*_schema variables are booleans, use right method. svn path=/branches/tk274/; revision=4784 --- rpkid/rpki/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpkid/rpki/config.py b/rpkid/rpki/config.py index 1ade720b..8957315f 100644 --- a/rpkid/rpki/config.py +++ b/rpkid/rpki/config.py @@ -269,12 +269,12 @@ class parser(object): pass try: - rpki.x509.XML_CMS_object.check_inbound_schema = self.get("check_inbound_schema") + rpki.x509.XML_CMS_object.check_inbound_schema = self.getboolean("check_inbound_schema") except ConfigParser.NoOptionError: pass try: - rpki.x509.XML_CMS_object.check_outbound_schema = self.get("check_outbound_schema") + rpki.x509.XML_CMS_object.check_outbound_schema = self.getboolean("check_outbound_schema") except ConfigParser.NoOptionError: pass -- cgit v1.2.3