diff options
author | Rob Austein <sra@hactrn.net> | 2012-10-17 23:06:19 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-10-17 23:06:19 +0000 |
commit | 18f25c3a44b96f6603624a6d81f6c521a3be32d0 (patch) | |
tree | 167a8d77eee9b516c8f486b5082a4bc4c3bb3b68 | |
parent | aa01113f28a31c4767f3c4b1fc038bc4e7ae3135 (diff) |
Oops, check_*_schema variables are booleans, use right method.
svn path=/branches/tk274/; revision=4784
-rw-r--r-- | rpkid/rpki/config.py | 4 |
1 files 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 |