/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/missing.py

  • Committer: Aaron Bentley
  • Date: 2007-07-03 18:00:34 UTC
  • mfrom: (2577 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2578.
  • Revision ID: abentley@panoramicfeedback.com-20070703180034-zuiuqbo5mx0tsa1n
Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
def _get_ancestry(repository, progress, label, step, rev_history):
120
120
    progress.update('%s ancestry' % label, step, 5)
121
121
    if len(rev_history) > 0:
122
 
        ancestry = set(repository.get_ancestry(rev_history[-1]))
 
122
        ancestry = set(repository.get_ancestry(rev_history[-1],
 
123
                       topo_sorted=False))
123
124
    else:
124
125
        ancestry = set()
125
126
    return ancestry