Fixed missing name change when moving settings from rfceditor module to settings.py.

- Legacy-Id: 5787
This commit is contained in:
Henrik Levkowetz 2013-06-11 10:45:20 +00:00
parent c1c529f9ae
commit b6098566a9
2 changed files with 4 additions and 4 deletions

View file

@ -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:

View file

@ -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)