adds missing attribute

This commit is contained in:
artus
2018-11-18 22:01:01 +01:00
parent 0bbc61d386
commit 89ed45c3d7

View File

@@ -81,6 +81,8 @@ class Store:
class Backup(Store):
TRASH_NAME = ".trash"
def __init__(self, path):
super().__init__(path)
self.trash = Store(self.path / self.TRASH_NAME)