/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 breezy/bundle/serializer/v08.py

  • Committer: Martin
  • Date: 2017-05-25 01:35:55 UTC
  • mto: This revision was merged to the branch mainline in revision 6637.
  • Revision ID: gzlist@googlemail.com-20170525013555-lepzczdnzb9r272j
Apply 2to3 next fixer and make compatible

Show diffs side-by-side

added added

removed removed

Lines of Context:
360
360
        return BundleInfo08()
361
361
 
362
362
    def _read(self):
363
 
        self._next().next()
 
363
        next(self._next())
364
364
        while self._next_line is not None:
365
365
            if not self._read_revision_header():
366
366
                break
537
537
                break
538
538
            if not self._next_line.startswith('#'):
539
539
                # Consume the trailing \n and stop processing
540
 
                self._next().next()
 
540
                next(self._next())
541
541
                break
542
542
 
543
543
class BundleInfo08(BundleInfo):