mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-01 10:49:05 +00:00
6 lines
168 B
Python
6 lines
168 B
Python
def main(request, response):
|
|
headers = [("Content-type", "application/xml;charset=windows-1252")]
|
|
content = '<' + chr(0xff) + '/>'
|
|
|
|
return headers, content
|