400
400
def rename(self, rel_from, rel_to):
401
401
path_from = self._abspath(rel_from)
404
403
# *don't* call bzrlib.osutils.rename, because we want to
409
406
except (IOError, OSError),e:
410
407
# TODO: What about path_to?
412
osutils._add_rename_error_details(e, path_from, path_to),
415
410
def move(self, rel_from, rel_to):
416
411
"""Move the item at rel_from to the location at rel_to"""