/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/log.py

Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2143
2143
def _get_kind_for_file_id(tree, path, file_id):
2144
2144
    """Return the kind of a file-id or None if it doesn't exist."""
2145
2145
    if file_id is not None:
2146
 
        return tree.kind(path, file_id)
 
2146
        return tree.kind(path)
2147
2147
    else:
2148
2148
        return None
2149
2149