~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

tree_files shouldn't dereference the first argument
That causes 'commit SYMLINK' and others to fail

Show diffs side-by-side

added added

removed removed

Lines of Context:
172
172
                view_str = views.view_display_str(view_files)
173
173
                note("Ignoring files outside view. View is %s" % view_str)
174
174
        return tree, file_list
175
 
    tree = WorkingTree.open_containing(osutils.realpath(file_list[0]))[0]
 
175
    tree = WorkingTree.open_containing(file_list[0])[0]
176
176
    return tree, safe_relpath_files(tree, file_list, canonicalize,
177
177
        apply_view=apply_view)
178
178