~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-25 03:47:50 UTC
  • Revision ID: mbp@sourcefrog.net-20050325034750-ef541e4bb84285ff
Fix inverted display of 'R' and 'M' during 'commit -v'

Show diffs side-by-side

added added

removed removed

Lines of Context:
480
480
                            state = 'A'
481
481
                        elif (old_ie.name == entry.name
482
482
                              and old_ie.parent_id == entry.parent_id):
 
483
                            state = 'M'
 
484
                        else:
483
485
                            state = 'R'
484
 
                        else:
485
 
                            state = 'M'
486
486
 
487
487
                        show_status(state, entry.kind, quotefn(path))
488
488