mercurial/util.py
changeset 4956 02b127749dc0
parent 4948 c8d1aa1822d5
child 5113 d5126a0172ba
--- a/mercurial/util.py	Thu Jul 19 18:39:51 2007 +0200
+++ b/mercurial/util.py	Fri Jul 20 09:31:32 2007 +0200
@@ -616,7 +616,7 @@
     """forcibly rename a file"""
     try:
         os.rename(src, dst)
-    except OSError, err:
+    except OSError, err: # FIXME: check err (EEXIST ?)
         # on windows, rename to existing file is not allowed, so we
         # must delete destination first. but if file is open, unlink
         # schedules it for delete but does not delete it. rename