~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/index.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-06-20 00:24:25 UTC
  • mfrom: (3504.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080620002425-fthsmp2t0ftzxp6c
Don't join the lines of the index twice (TimeHorse, James Westby)

Show diffs side-by-side

added added

removed removed

Lines of Context:
219
219
            raise errors.BzrError('Failed index creation. Internal error:'
220
220
                ' mismatched output length and expected length: %d %d' %
221
221
                (len(result.getvalue()), expected_bytes))
222
 
        return StringIO(''.join(lines))
 
222
        return result
223
223
 
224
224
 
225
225
class GraphIndex(object):