From b37ce7e86fe3b795fde15b76bedb52f7827276bd Mon Sep 17 00:00:00 2001 From: Reid 'arrdem' McKenzie Date: Tue, 30 Aug 2022 19:26:15 -0600 Subject: [PATCH] De-conflict copy method --- src/python/vfs/impl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"):