~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

  • Committer: Martin Pool
  • Date: 2005-05-16 02:47:58 UTC
  • Revision ID: mbp@sourcefrog.net-20050516024758-4e220ca7c0d3dfd5
- fix verboseness in commit command

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
                mutter('    stored with text_id {%s}' % entry.text_id)
144
144
                if verbose:
145
145
                    if not old_ie:
146
 
                        note('added %s' % path)
 
146
                        print('added %s' % path)
147
147
                    elif (old_ie.name == entry.name
148
148
                          and old_ie.parent_id == entry.parent_id):
149
 
                        note('modified %s' % path)
 
149
                        print('modified %s' % path)
150
150
                    else:
151
 
                        note('renamed %s' % path)
 
151
                        print('renamed %s' % path)
152
152
 
153
153
 
154
154
    for file_id in missing_ids: