~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2008-12-09 01:37:28 UTC
  • mto: This revision was merged to the branch mainline in revision 3884.
  • Revision ID: aaron@aaronbentley.com-20081209013728-43v0yz6mo2jfexqv
Use default log format in pull -v

Show diffs side-by-side

added added

removed removed

Lines of Context:
798
798
                    result.old_revid))
799
799
                old_rh.reverse()
800
800
                new_rh = branch_to.revision_history()
 
801
                log_format = log_format = branch_to.get_config().log_format()
801
802
                log.show_changed_revisions(branch_to, old_rh, new_rh,
802
 
                                           to_file=self.outf)
 
803
                                           to_file=self.outf,
 
804
                                           log_format=log_format)
803
805
        finally:
804
806
            branch_to.unlock()
805
807