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

  • Committer: Matt Nordhoff
  • Date: 2007-11-30 02:06:35 UTC
  • mto: This revision was merged to the branch mainline in revision 3065.
  • Revision ID: mnordhoff@mattnordhoff.com-20071130020635-a53ezbww49og1sch
bzr commit: don't print the revision number twice. (Bug #172612)

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
 
134
134
    def started(self, revno, rev_id, location=None):
135
135
        if location is not None:
136
 
            location = ' to "' + unescape_for_display(location, 'utf-8') + '"'
 
136
            location = ' to: ' + unescape_for_display(location, 'utf-8')
137
137
        else:
138
138
            location = ''
139
 
        self._note('Committing revision %d%s.', revno, location)
 
139
        self._note('Committing%s', location)
140
140
 
141
141
    def completed(self, revno, rev_id):
142
142
        self._note('Committed revision %d.', revno)