--> -->
 
 
<type 'exceptions.KeyError'>
Python 2.7.6: /usr/bin/python
Sun Apr 28 19:48:39 2024

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /afs/csail.mit.edu/u/j/jbabb/public_html/remoteproto.py in ()
     10 print "Content-Type: text/plain\n"
     11 
=>   12 programString =  form['program'].value
     13 
     14 s=open("remote.test",'w')
programString undefined, form = FieldStorage(None, None, []), ].value = []
 /usr/lib/python2.7/cgi.py in __getitem__(self=FieldStorage(None, None, []), key='program')
    538             if item.name == key: found.append(item)
    539         if not found:
=>  540             raise KeyError, key
    541         if len(found) == 1:
    542             return found[0]
builtin KeyError = <type 'exceptions.KeyError'>, key = 'program'

<type 'exceptions.KeyError'>: 'program'
      args = ('program',)
      message = 'program'