From ee7bde5adc101087a8921d465209d06c1d65cc2d Mon Sep 17 00:00:00 2001 From: gryf Date: Tue, 10 Oct 2023 18:05:16 +0200 Subject: [PATCH] Make an empty Tree() as a base for recreating tree. --- gtkpass.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gtkpass.py b/gtkpass.py index c1cca62..c405bce 100755 --- a/gtkpass.py +++ b/gtkpass.py @@ -448,6 +448,7 @@ class PassStore: return path def gather_pass_tree(self): + self.data = Tree() self._gather_pass_tree(self.data, self.store_path, '') def get_pass(self, path):