소스 검색

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

불러오는 중...
취소
저장