In message <[EMAIL PROTECTED]>, xavim
wrote:

> This should read::
> 
>     try:
>         (...)
>     except:
>         os.remove(dictpath)
>         raise

Perhaps:

    try :
        (...)
    except :
        try :
            os.remove(dictpath)
        except :
            pass
        #end try
        raise
    #end try

(Just in case.)
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to