aboutsummaryrefslogtreecommitdiff
path: root/rpki/xml_utils.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2014-07-03 16:55:02 +0000
committerRob Austein <sra@hactrn.net>2014-07-03 16:55:02 +0000
commitafb06330d3b3f6fdeb32012ee8626d88ba2ed381 (patch)
tree1978c18042358a7d73f7cf7f37aef359a4fb295d /rpki/xml_utils.py
parent1cab1084f94884a7a71f0a7cbca79d7772209c5c (diff)
Convert to current IETF I-D version of publication protocol. See #705.
svn path=/branches/tk705/; revision=5881
Diffstat (limited to 'rpki/xml_utils.py')
-rw-r--r--rpki/xml_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpki/xml_utils.py b/rpki/xml_utils.py
index e940d127..1574cd9e 100644
--- a/rpki/xml_utils.py
+++ b/rpki/xml_utils.py
@@ -460,7 +460,7 @@ class msg(list):
Generate top-level PDU.
"""
elt = lxml.etree.Element("{%s}msg" % (self.xmlns), nsmap = self.nsmap, version = str(self.version), type = self.type)
- elt.extend([i.toXML() for i in self])
+ elt.extend(i.toXML() for i in self)
return elt
@classmethod