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