Переглянути джерело

Try moving prints to above the scrape (for Haringey and Westminster problem).

master
duncan.parkes 16 роки тому
джерело
коміт
babe3c4d20
1 змінених файлів з 2 додано та 3 видалено
  1. +2
    -3
      python_scrapers/CGITemplate

+ 2
- 3
python_scrapers/CGITemplate Переглянути файл

@@ -23,9 +23,8 @@ import %(module)s

parser = %(module)s.%(parser)s(authority_name, authority_short_name, base_url)

xml = parser.getResults(day, month, year)


print "Content-Type: text/xml; charset=utf-8" # XML is following
print

xml = parser.getResults(day, month, year)
print xml.encode("utf-8") # print the xml

Завантаження…
Відмінити
Зберегти