De-conflict copy method

This commit is contained in:
Reid 'arrdem' McKenzie 2022-08-30 19:26:15 -06:00
parent 40f74f993e
commit b37ce7e86f

View file

@ -104,7 +104,7 @@ class Vfs(object):
def unlink(self, dest): def unlink(self, dest):
self._append(("unlink", dest)) self._append(("unlink", dest))
def copy(self): def clone(self):
return Vfs(list(self._log)) return Vfs(list(self._log))
def merge(self, other: "Vfs"): def merge(self, other: "Vfs"):