We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbcdcfa commit 75b0f0dCopy full SHA for 75b0f0d
1 file changed
ietf/sync/rfceditor.py
@@ -28,10 +28,11 @@
28
MIN_INDEX_RESULTS = 5000
29
30
def get_child_text(parent_node, tag_name):
31
+ text = []
32
for node in parent_node.childNodes:
33
if node.nodeType == Node.ELEMENT_NODE and node.localName == tag_name:
- return node.firstChild.data
34
- return None
+ text.append(node.firstChild.data)
35
+ return '\n\n'.join(text)
36
37
38
def fetch_queue_xml(url):
0 commit comments