Rev 4762: Revert the fix from vila and spiv, since now concatenating in http://bazaar.launchpad.net/~jameinel/bzr/2.1-st-concat
John Arbash Meinel
john at arbash-meinel.com
Wed Oct 21 04:50:43 BST 2009
At http://bazaar.launchpad.net/~jameinel/bzr/2.1-st-concat
------------------------------------------------------------
revno: 4762
revision-id: john at arbash-meinel.com-20091021035026-7kovycamyswcycma
parent: john at arbash-meinel.com-20091021034903-0ut5l1rxnlrdjdi4
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: 2.1-st-concat
timestamp: Tue 2009-10-20 22:50:26 -0500
message:
Revert the fix from vila and spiv, since now concatenating
a static tuple and a tuple works.
-------------- next part --------------
=== modified file 'bzrlib/repofmt/pack_repo.py'
--- a/bzrlib/repofmt/pack_repo.py 2009-10-16 07:10:11 +0000
+++ b/bzrlib/repofmt/pack_repo.py 2009-10-21 03:50:26 +0000
@@ -2089,7 +2089,7 @@
('signatures', self.repo.signatures),
):
missing = versioned_file.get_missing_compression_parent_keys()
- all_missing.update([(prefix,) + tuple(key) for key in missing])
+ all_missing.update([(prefix,) + key for key in missing])
if all_missing:
raise errors.BzrCheckError(
"Repository %s has missing compression parent(s) %r "
More information about the bazaar-commits
mailing list