mercurial/util.py
changeset 13279 eed22340b7aa
parent 13235 6bf39d88c857
child 13282 c01eea6c455b
--- a/mercurial/util.py	Tue Jan 11 14:10:16 2011 +0100
+++ b/mercurial/util.py	Tue Jan 11 14:10:16 2011 +0100
@@ -919,7 +919,9 @@
                     fd = open(f)
                     nlink = nlinks(f)
                     fd.close()
-            except (OSError, IOError):
+            except (OSError, IOError), e:
+                if e.errno != errno.ENOENT:
+                    raise
                 nlink = 0
                 if not os.path.isdir(dirname):
                     makedirs(dirname, self.createmode)