Rev 15: Fix inverse bug - needs tests. in file:///data/jelmer/bzr-rebase/trunk/
Jelmer Vernooij
jelmer at samba.org
Thu Jul 12 09:22:41 BST 2007
At file:///data/jelmer/bzr-rebase/trunk/
------------------------------------------------------------
revno: 15
revision-id: jelmer at samba.org-20070705104021-9ji91y4xizglxqev
parent: jelmer at samba.org-20070705102932-mhots77le9td8jtw
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: bzr-rebase
timestamp: Thu 2007-07-05 12:40:21 +0200
message:
Fix inverse bug - needs tests.
modified:
rebase.py rebase.py-20070626221123-ellanmf93nw8z9r1-1
=== modified file 'rebase.py'
--- a/rebase.py 2007-07-05 10:29:32 +0000
+++ b/rebase.py 2007-07-05 10:40:21 +0000
@@ -194,7 +194,7 @@
assert replace_map[c][0] != rev.revision_id
processed.add(r)
# Add them to todo[]
- todo.extend(filter(lambda x: x in processed, children[r]))
+ todo.extend(filter(lambda x: not x in processed, children[r]))
finally:
pb.finished()
More information about the bazaar-commits
mailing list