/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/log.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:
1924
1924
    while do_new or do_old:
1925
1925
        if do_new:
1926
1926
            try:
1927
 
                new_revision = new_iter.next()
 
1927
                new_revision = next(new_iter)
1928
1928
            except StopIteration:
1929
1929
                do_new = False
1930
1930
            else:
1935
1935
                    break
1936
1936
        if do_old:
1937
1937
            try:
1938
 
                old_revision = old_iter.next()
 
1938
                old_revision = next(old_iter)
1939
1939
            except StopIteration:
1940
1940
                do_old = False
1941
1941
            else: