~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Martin Pool
  • Date: 2005-05-11 05:02:35 UTC
  • Revision ID: mbp@sourcefrog.net-20050511050235-173111e42687eaaf
- compare_trees() also reports unchanged files

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
    
54
54
    print
55
55
    print 'in the working tree:'
56
 
    print '  %8s unchanged' % '?'
 
56
    print '  %8s unchanged' % len(delta.unchanged)
57
57
    print '  %8d modified' % len(delta.modified)
58
58
    print '  %8d added' % len(delta.added)
59
59
    print '  %8d removed' % len(delta.removed)