~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

Merge with get_file_sha1

Show diffs side-by-side

added added

removed removed

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