Rev 5090: (Jelmer) Fix concatenation of tuples in BTreeIndex. in file:///home/pqm/archives/thelove/bzr/%2Btrunk/

Canonical.com Patch Queue Manager pqm at pqm.ubuntu.com
Mon Mar 15 07:47:40 GMT 2010


At file:///home/pqm/archives/thelove/bzr/%2Btrunk/

------------------------------------------------------------
revno: 5090 [merge]
revision-id: pqm at pqm.ubuntu.com-20100315074740-aao8c15kl8r8q3xm
parent: pqm at pqm.ubuntu.com-20100313233933-4xpo3axwexbhu2jz
parent: jelmer at samba.org-20100313231348-6cwx5ocstis81lhd
committer: Canonical.com Patch Queue Manager <pqm at pqm.ubuntu.com>
branch nick: +trunk
timestamp: Mon 2010-03-15 07:47:40 +0000
message:
  (Jelmer) Fix concatenation of tuples in BTreeIndex.
modified:
  bzrlib/btree_index.py          index.py-20080624222253-p0x5f92uyh5hw734-7
=== modified file 'bzrlib/btree_index.py'
--- a/bzrlib/btree_index.py	2010-02-17 17:11:16 +0000
+++ b/bzrlib/btree_index.py	2010-03-13 23:13:48 +0000
@@ -567,7 +567,7 @@
                     else:
                         # yield keys
                         for value in key_dict.itervalues():
-                            yield (self, ) + value
+                            yield (self, ) + tuple(value)
             else:
                 yield (self, ) + key_dict
 




More information about the bazaar-commits mailing list