Fixed missing name change when moving settings from rfceditor module to settings.py.
- Legacy-Id: 5787
This commit is contained in:
parent
c1c529f9ae
commit
b6098566a9
|
@ -28,9 +28,9 @@ if options.skip_date:
|
|||
|
||||
from ietf.sync.rfceditor import *
|
||||
|
||||
syslog.syslog("Updating document metadata from RFC index from %s" % QUEUE_URL)
|
||||
syslog.syslog("Updating document metadata from RFC index from %s" % settings.RFC_EDITOR_QUEUE_URL)
|
||||
|
||||
response = fetch_index_xml(INDEX_URL)
|
||||
response = fetch_index_xml(settings.RFC_EDITOR_INDEX_URL)
|
||||
data = parse_index(response)
|
||||
|
||||
if len(data) < MIN_INDEX_RESULTS:
|
||||
|
|
|
@ -16,9 +16,9 @@ management.setup_environ(settings)
|
|||
|
||||
from ietf.sync.rfceditor import *
|
||||
|
||||
syslog.syslog("Updating RFC Editor queue states from %s" % QUEUE_URL)
|
||||
syslog.syslog("Updating RFC Editor queue states from %s" % settings.RFC_EDITOR_QUEUE_URL)
|
||||
|
||||
response = fetch_queue_xml(QUEUE_URL)
|
||||
response = fetch_queue_xml(settings.RFC_EDITOR_QUEUE_URL)
|
||||
drafts, warnings = parse_queue(response)
|
||||
for w in warnings:
|
||||
syslog.syslog(u"WARNING: %s" % w)
|
||||
|
|
Loading…
Reference in a new issue