Skip to content

Commit b609856

Browse files
committed
Fixed missing name change when moving settings from rfceditor module to settings.py.
- Legacy-Id: 5787
1 parent c1c529f commit b609856

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ietf/bin/rfc-editor-index-updates

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ if options.skip_date:
2828

2929
from ietf.sync.rfceditor import *
3030

31-
syslog.syslog("Updating document metadata from RFC index from %s" % QUEUE_URL)
31+
syslog.syslog("Updating document metadata from RFC index from %s" % settings.RFC_EDITOR_QUEUE_URL)
3232

33-
response = fetch_index_xml(INDEX_URL)
33+
response = fetch_index_xml(settings.RFC_EDITOR_INDEX_URL)
3434
data = parse_index(response)
3535

3636
if len(data) < MIN_INDEX_RESULTS:

ietf/bin/rfc-editor-queue-updates

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ management.setup_environ(settings)
1616

1717
from ietf.sync.rfceditor import *
1818

19-
syslog.syslog("Updating RFC Editor queue states from %s" % QUEUE_URL)
19+
syslog.syslog("Updating RFC Editor queue states from %s" % settings.RFC_EDITOR_QUEUE_URL)
2020

21-
response = fetch_queue_xml(QUEUE_URL)
21+
response = fetch_queue_xml(settings.RFC_EDITOR_QUEUE_URL)
2222
drafts, warnings = parse_queue(response)
2323
for w in warnings:
2424
syslog.syslog(u"WARNING: %s" % w)

0 commit comments

Comments
 (0)