/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: Jelmer Vernooij
  • Date: 2019-06-16 02:23:42 UTC
  • mfrom: (7340 work)
  • mto: This revision was merged to the branch mainline in revision 7350.
  • Revision ID: jelmer@jelmer.uk-20190616022342-ihxzayq04x5culzd
merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
                try:
203
203
                    change = next(changes)
204
204
                    # Exclude root (talk about black magic... --vila 20090629)
205
 
                    if change[4] == (None, None):
 
205
                    if change.parent_id == (None, None):
206
206
                        change = next(changes)
207
207
                    return True
208
208
                except StopIteration: