#!/bin/sh if ( test -n "$2" ) ; then echo "$1 Error" if ( test "$2" = "HandledError" ) ; then echo "$3" echo "ERRORURL: mailto:1001screenshot@sabi.net Send Feedback" else echo "An unexpected error has occurred." echo "" echo "$2: $3" echo "" echo "See the Console for a detailed traceback." echo "ERRORURL: mailto:1001screenshot@sabi.net?subject=$2 Report Bug" fi else echo "$1 Error" echo "MacPython 2.3 is required to run this application."; echo "ERRORURL: http://homepages.cwi.nl/~jack/macpython/index.html Visit the MacPython Website"; fi