Changeset 3088

Show
Ignore:
Timestamp:
04/26/2007 03:56:57 AM (2 years ago)
Author:
ed
Message:

Changed the temp file removal so that if the temp file no longer exists, a warning message is not printed, since the goal is delete it anyway.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dabo/dApp.py

    r3060 r3088  
    5959            import os 
    6060            for f in self._tempFiles: 
    61                 os.remove(f) 
     61                if not os.path.exists(f): 
     62                    continue 
    6263                try: 
    6364                    os.remove(f)