/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/version_info_formats/format_python.py

  • Committer: Vincent Ladeuil
  • Date: 2011-11-24 15:48:29 UTC
  • mfrom: (6289 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6337.
  • Revision ID: v.ladeuil+lp@free.fr-20111124154829-avowjpsxdl8yp2vz
merge trunk resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        to_file.write('\n\n')
84
84
 
85
85
        if self._include_history:
86
 
            self._extract_revision_history()
87
 
            revision_str = pprint.pformat(self._revision_history_info)
 
86
            history = list(self._iter_revision_history())
 
87
            revision_str = pprint.pformat(history)
88
88
            to_file.write('revisions = ')
89
89
            to_file.write(revision_str)
90
90
            to_file.write('\n\n')