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