~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2005-10-19 17:57:51 UTC
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1474.
  • Revision ID: abentley@panoramicfeedback.com-20051019175751-47021813f45f6122
Fixed bzr ancestry find_branch call

Show diffs side-by-side

added added

removed removed

Lines of Context:
533
533
    hidden = True
534
534
    @display_command
535
535
    def run(self):
536
 
        b = find_branch('.')
 
536
        b = Branch.open_containing('.')[0]
537
537
        for revision_id in b.get_ancestry(b.last_revision()):
538
538
            print revision_id
539
539