/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/_dirstate_helpers_py.py

  • Committer: Andrew Bennetts
  • Date: 2008-08-07 00:25:38 UTC
  • mfrom: (3612 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3613.
  • Revision ID: andrew.bennetts@canonical.com-20080807002538-mtl1fcgy2fdabha4
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
    # Remove the last blank entry
202
202
    trailing = fields.pop()
203
203
    if trailing != '':
204
 
        raise AssertionError("dirstate line %r has trailing garbage: %r" 
 
204
        raise AssertionError("dirstate file has trailing garbage: %r"
205
205
            % (trailing,))
206
206
    # consider turning fields into a tuple.
207
207