added delete_file stub to LocalFilesystemImage

This commit is contained in:
Rob McMullen 2018-07-18 19:33:44 -07:00
parent dff073208f
commit 80d47573bb
1 changed files with 3 additions and 0 deletions

View File

@ -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="."):