From 80d47573bbf3b98b77d7322c7f95696b255e2f47 Mon Sep 17 00:00:00 2001 From: Rob McMullen Date: Wed, 18 Jul 2018 19:33:44 -0700 Subject: [PATCH] added delete_file stub to LocalFilesystemImage --- atrcopy/dummy.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/atrcopy/dummy.py b/atrcopy/dummy.py index 0415b4e..7482d52 100644 --- a/atrcopy/dummy.py +++ b/atrcopy/dummy.py @@ -35,6 +35,9 @@ class LocalFilesystemImage(DiskImageBase): with open(path, "wb") as fh: fh.write(data) + def delete_file(self, name): + pass + class LocalFilesystem(): def __init__(self, path="."):