# HG changeset patch # User Alexis S. L. Carvalho # Date 1173575002 10800 # Node ID b36bd7534c08eba29307d13e57eceb55c7ea7afd # Parent 1df1baf2002ebae26ffb2037cb4e4948fdaf8947 statwalk: don't put self.root in the files list That list is supposed to contain internal, normalized names ("/"-separated, relative to the repo root), not OS-native paths. diff -r 1df1baf2002e -r b36bd7534c08 mercurial/dirstate.py --- a/mercurial/dirstate.py Sat Mar 10 22:03:21 2007 -0300 +++ b/mercurial/dirstate.py Sat Mar 10 22:03:22 2007 -0300 @@ -376,7 +376,7 @@ # walk all files by default if not files: - files = [self.root] + files = ['.'] dc = self.map.copy() else: files = util.unique(files)