aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/xml_utils.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2011-03-18 03:51:12 +0000
committerRob Austein <sra@hactrn.net>2011-03-18 03:51:12 +0000
commit42b211b6aa4aff2c233aa5a6fe30f231a423e068 (patch)
treef137b4bbbe1dc73696211a03c38b270b015520fa /rpkid/rpki/xml_utils.py
parent94b7b05f1104c2350b41d63c09f35bde0f0a0b83 (diff)
Add @property decorators to a bunch of methods that are just syntactic
sugar around cached SQL object fetches. Checkpoint of incomplete support for Ghostbusters reords. Clean up a few extraneous imports. svn path=/rpkid/Makefile.in; revision=3725
Diffstat (limited to 'rpkid/rpki/xml_utils.py')
-rw-r--r--rpkid/rpki/xml_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/rpki/xml_utils.py b/rpkid/rpki/xml_utils.py
index 7b8297a4..27c1f1e6 100644
--- a/rpkid/rpki/xml_utils.py
+++ b/rpkid/rpki/xml_utils.py
@@ -3,7 +3,7 @@ XML utilities.
$Id$
-Copyright (C) 2009 Internet Systems Consortium ("ISC")
+Copyright (C) 2009-2011 Internet Systems Consortium ("ISC")
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -32,7 +32,7 @@ OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
"""
-import xml.sax, lxml.sax, lxml.etree, base64
+import xml.sax, lxml.sax, lxml.etree
import rpki.exceptions
class sax_handler(xml.sax.handler.ContentHandler):