Browse Source

Try declaring the charset as utf-8

import/raw
duncan.parkes 16 years ago
parent
commit
797cedf1d3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      trunk/python_scrapers/CGITemplate

+ 1
- 1
trunk/python_scrapers/CGITemplate View File

@@ -26,6 +26,6 @@ parser = %(module)s.%(parser)s(authority_name, authority_short_name, base_url)
xml = parser.getResults(day, month, year)


print "Content-Type: text/xml" # XML is following
print "Content-Type: text/xml; charset=utf-8" # XML is following
print
print xml.encode("utf-8") # print the xml

Loading…
Cancel
Save