151
151
# TODO: What about path_to?
152
152
self._translate_error(e, path_from)
154
164
def move(self, rel_from, rel_to):
155
165
"""Move the item at rel_from to the location at rel_to"""
156
166
path_from = self.abspath(rel_from)
157
167
path_to = self.abspath(rel_to)
160
171
rename(path_from, path_to)
161
172
except (IOError, OSError),e:
162
173
# TODO: What about path_to?