--> --> -->
 
 
<type 'exceptions.OSError'>
Python 2.7.3: /usr/bin/python
Sat May 19 20:07:03 2012

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

 /home/jonathan/mirror/cambridge.cgi in ()
   3896     process_changes()
   3897     output_form_beginning()
=> 3898     output_main_body()
   3899     output_form_end()
   3900     output(page_footer)
output_main_body = <function output_main_body>
 /home/jonathan/mirror/cambridge.cgi in output_main_body()
   3288             authentication_failed()
   3289     else:
=> 3290         remove_mutable_data()
   3291         mutable_master.current_card = ""
   3292         output_default()
global remove_mutable_data = <function remove_mutable_data>
 /home/jonathan/mirror/cambridge.cgi in remove_mutable_data()
   3741     except IOError:
   3742         pass
=> 3743     os.remove(get_pickled_data_filename("mutable"))
   3744     mutable_data_has_been_deleted = 1
   3745 
global os = <module 'os' from '/usr/lib/python2.7/os.pyc'>, os.remove = <built-in function remove>, global get_pickled_data_filename = <function get_pickled_data_filename>

<type 'exceptions.OSError'>: [Errno 2] No such file or directory: '/home/jonathan/virtual_tour//pickled/data.mutable.38.107.179.213'
      args = (2, 'No such file or directory')
      errno = 2
      filename = '/home/jonathan/virtual_tour//pickled/data.mutable.38.107.179.213'
      message = ''
      strerror = 'No such file or directory'