# HG changeset patch # User Bryan O'Sullivan # Date 1123974577 28800 # Node ID f481c9b6786ef7dd319f7c61dea23a794729f27d # Parent a9b843b114f96b07cf0aabb1cec38d513591a07f Fix bug involving "hg debugwalk -Ipattern" from repository root. diff -r a9b843b114f9 -r f481c9b6786e mercurial/hg.py --- a/mercurial/hg.py Sat Aug 13 14:41:51 2005 -0800 +++ b/mercurial/hg.py Sat Aug 13 15:09:37 2005 -0800 @@ -502,6 +502,7 @@ for dir, subdirs, fl in os.walk(f): d = dir[len(self.root) + 1:] nd = util.normpath(d) + if nd == '.': nd = '' if seen(nd): subdirs[:] = [] continue