~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Martin Pool
  • Date: 2005-05-11 08:06:44 UTC
  • Revision ID: mbp@sourcefrog.net-20050511080644-ab9efcab5857e8cb
- selected-file match also applies when listing unknown files

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    unknowns = new.unknowns()
45
45
    done_header = False
46
46
    for path in unknowns:
 
47
        # FIXME: Should also match if the unknown file is within a
 
48
        # specified directory.
 
49
        if file_list:
 
50
            if path not in file_list:
 
51
                continue
47
52
        if not done_header:
48
53
            print 'unknown:'
49
54
            done_header = True