diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-08-01 03:10:07 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-08-01 03:10:07 +0300 |
commit | df42b1ccb3766beb5eaadb742bf905a593143c75 (patch) | |
tree | 95db1e226fe330d0021fe76cd896fa901552c9fc | |
parent | 129ea3cc5bd9a77db9138277e2dc23b294c19608 (diff) | |
download | troggle-df42b1ccb3766beb5eaadb742bf905a593143c75.tar.gz troggle-df42b1ccb3766beb5eaadb742bf905a593143c75.tar.bz2 troggle-df42b1ccb3766beb5eaadb742bf905a593143c75.zip |
remove debugging print
-rw-r--r-- | core/models/survex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/survex.py b/core/models/survex.py index 11ef4f4..05588f9 100644 --- a/core/models/survex.py +++ b/core/models/survex.py @@ -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) |