Changeset 151

Show
Ignore:
Timestamp:
03/13/08 09:28:48 (10 months ago)
Author:
emuller
Message:

try except finally not supported by python 2.4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/analysis.py

    r139 r151  
    7878    except: 
    7979        print "Error playing the SpikeTrain " 
     80        # finally 
     81        os.remove(cfilename) 
    8082 
    81   
    82     finally: 
    83         os.remove(cfilename) 
     83    # Python 2.4 compatibility 
     84    # finally: 
     85    os.remove(cfilename) 
    8486 
    8587