/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/mutabletree.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:
234
234
            _from_tree = self.basis_tree()
235
235
        changes = self.iter_changes(_from_tree)
236
236
        try:
237
 
            change = changes.next()
 
237
            change = next(changes)
238
238
            # Exclude root (talk about black magic... --vila 20090629)
239
239
            if change[4] == (None, None):
240
 
                change = changes.next()
 
240
                change = next(changes)
241
241
            return True
242
242
        except StopIteration:
243
243
            # No changes