Hi,
In Python Bundle for "Debug Script in Terminal":
tell application "Terminal" activate do script with command "$TPY -m pdb $TM_FILEPATH" end tell
doesn't work for TM_FILEPATHs which contain white spaces.
Better:
tell application "Terminal" activate do script with command "$TPY -m pdb '$TM_FILEPATH'" end tell
Cheers, --Hans