# HG changeset patch # User Benoit Boissinot # Date 1166221152 -3600 # Node ID 733d56b8830f98d06bcdcb8154cd70e14378a368 # Parent 2b3175acb65336531add235712c8bede9474e00f fix strip on windows c: was interpreted as a protocol, prepend file: to the bundle file name diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -702,6 +702,7 @@ class queue: if saveheads: backupch = repo.changegroupsubset(savebases.keys(), saveheads, 'strip') chgrpfile = bundle(backupch) + chgrpfile = 'file:%s' % chgrpfile stripall(rev, revnum)