~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-07-29 22:21:25 UTC
  • Revision ID: mbp@sourcefrog.net-20050729222125-f1143d5c05e6707d
- split TreeDelta and compare_trees out into new module bzrlib.delta

Show diffs side-by-side

added added

removed removed

Lines of Context:
860
860
    """List files modified in working tree."""
861
861
    hidden = True
862
862
    def run(self):
863
 
        from bzrlib.diff import compare_trees
 
863
        from bzrlib.delta import compare_trees
864
864
 
865
865
        b = find_branch('.')
866
866
        td = compare_trees(b.basis_tree(), b.working_tree())