changeset 1245:d0a960b437a8

Files not getting added appropiately On Wed, 14 Sep 2005 15:15:13 -0400 Daniel Santa Cruz <byteshack@gmail.com> wrote: > c:> hg debugstate > a 666 0 09/14/05 15:11:44 a/aa\aa.a > a 666 0 09/14/05 15:11:47 a/aa\aa.b <---- notice mixed > slashes > > This all seems very confusing.... Please try this:
author Chris Mason <mason@suse.com>
date Wed, 14 Sep 2005 15:50:31 -0500
parents 937ee88da3ef
children 0ad3f9b27260
files mercurial/dirstate.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/dirstate.py	Wed Sep 14 15:48:34 2005 -0500
+++ b/mercurial/dirstate.py	Wed Sep 14 15:50:31 2005 -0500
@@ -260,7 +260,7 @@
                             work.append(p)
                     else:
                         if statmatch(np, st):
-                            yield np
+                            yield util.pconvert(np)
 
         known = {'.hg': 1}
         def seen(fn):