~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/btree_index.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-03-15 07:47:40 UTC
  • mfrom: (5088.1.1 tuple-type)
  • Revision ID: pqm@pqm.ubuntu.com-20100315074740-aao8c15kl8r8q3xm
(Jelmer) Fix concatenation of tuples in BTreeIndex.

Show diffs side-by-side

added added

removed removed

Lines of Context:
567
567
                    else:
568
568
                        # yield keys
569
569
                        for value in key_dict.itervalues():
570
 
                            yield (self, ) + value
 
570
                            yield (self, ) + tuple(value)
571
571
            else:
572
572
                yield (self, ) + key_dict
573
573