Skip to content

Commit e6e0b16

Browse files
committed
Tweaked bin/rfc-editor-* scripts
- Legacy-Id: 17439
1 parent 4ecaeab commit e6e0b16

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

ietf/bin/rfc-editor-index-updates

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ log("Updating document metadata from RFC index from %s" % settings.RFC_EDITOR_IN
4949

5050

5151
socket.setdefaulttimeout(30)
52-
rfc_index_xml = requests.get(settings.RFC_EDITOR_INDEX_URL, stream=True).text
52+
rfc_index_xml = requests.get(settings.RFC_EDITOR_INDEX_URL).text
5353
index_data = ietf.sync.rfceditor.parse_index(io.StringIO(rfc_index_xml))
5454

5555
errata_data = requests.get(settings.RFC_EDITOR_ERRATA_JSON_URL).json()

ietf/bin/rfc-editor-queue-updates

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env python
22

3+
import io
34
import os
45
import requests
56
import socket

0 commit comments

Comments
 (0)