1#!/usr/bin/env python
2from __future__ import print_function
3import sys
4print('Status: 500 Server Error')
5print('Content-type: text/html')
6print()
7print('There was an error')
8print('some data on the error', file=sys.stderr)
9