/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 bzrlib/workingtree.py

Unshelved all changes except those related to removing RootEntry

Show diffs side-by-side

added added

removed removed

Lines of Context:
857
857
        if to_dir_id == None and to_name != '':
858
858
            raise BzrError("destination %r is not a versioned directory" % to_name)
859
859
        to_dir_ie = inv[to_dir_id]
860
 
        if to_dir_ie.kind not in ('directory', 'root_directory'):
 
860
        if to_dir_ie.kind != 'directory':
861
861
            raise BzrError("destination %r is not a directory" % to_abs)
862
862
 
863
863
        to_idpath = inv.get_idpath(to_dir_id)