remove debugging print

This commit is contained in:
Philip Sargent 2022-08-01 03:10:07 +03:00
parent 129ea3cc5b
commit df42b1ccb3

View File

@ -296,7 +296,7 @@ class Wallet(models.Model):
else:
files = self.get_fnames()
print(self.walletname,files)
# Notes required
notes_scanned = reduce(operator.or_, [f.startswith("note") for f in files], False)
notes_scanned = reduce(operator.or_, [f.endswith("notes") for f in files], notes_scanned)