diff --git a/src/python/vfs/impl.py b/src/python/vfs/impl.py index 586197c..f6943e6 100644 --- a/src/python/vfs/impl.py +++ b/src/python/vfs/impl.py @@ -104,7 +104,7 @@ class Vfs(object): def unlink(self, dest): self._append(("unlink", dest)) - def copy(self): + def clone(self): return Vfs(list(self._log)) def merge(self, other: "Vfs"):