~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_chk_map_pyx.pyx

  • Committer: Andrew Bennetts
  • Date: 2010-10-08 04:25:10 UTC
  • mto: This revision was merged to the branch mainline in revision 5472.
  • Revision ID: andrew.bennetts@canonical.com-20101008042510-sg9vdhmnggilzxsk
Fix stray TAB in source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
422
422
        raise ValueError('No kind section found.')
423
423
    if cur_end[1] != c' ':
424
424
        raise ValueError(
425
 
                'Kind section should end with ": ", got %r' % str(cur_end[:2],))
 
425
            'Kind section should end with ": ", got %r' % str(cur_end[:2],))
426
426
    file_id_str = cur_end + 2
427
427
    # file_id is now the data up until the next newline
428
428
    cur_end = <char*>memchr(file_id_str, c'\n', byte_end - file_id_str)