~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Aaron Bentley
  • Date: 2008-09-20 16:40:41 UTC
  • mto: (3363.13.6 extras)
  • mto: This revision was merged to the branch mainline in revision 3715.
  • Revision ID: aaron@aaronbentley.com-20080920164041-z4gepzn2shjj02ll
Revert changed select-all test

Show diffs side-by-side

added added

removed removed

Lines of Context:
672
672
    at least one tree.
673
673
    :return: a set of file ids for the specified filenames and their children.
674
674
    """
675
 
    if filenames is None:
 
675
    if not filenames:
676
676
        return None
677
677
    specified_path_ids = _find_ids_across_trees(filenames, trees,
678
678
        require_versioned)