diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-08-07 23:41:45 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-08-07 23:41:45 +0300 |
commit | 25c425cff8890f28a7c8038f78c3c0bbc9cbe97f (patch) | |
tree | 1067f0904d2690b1e8257a8ab12d5b75c08d4358 /parsers/scans.py | |
parent | 7f335e082cbb40b869ce4705dec30c11a2e9f16a (diff) | |
download | troggle-25c425cff8890f28a7c8038f78c3c0bbc9cbe97f.tar.gz troggle-25c425cff8890f28a7c8038f78c3c0bbc9cbe97f.tar.bz2 troggle-25c425cff8890f28a7c8038f78c3c0bbc9cbe97f.zip |
QMs grayed out for survex files 2014 and earlier
Diffstat (limited to 'parsers/scans.py')
-rw-r--r-- | parsers/scans.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/parsers/scans.py b/parsers/scans.py index 4e6d495..cf4a100 100644 --- a/parsers/scans.py +++ b/parsers/scans.py @@ -143,10 +143,12 @@ def CopyWalletData(wallet): -# this iterates through the scans directories (either here or on the remote server) -# and builds up the models we can access later def load_all_scans(): - + '''This iterates through the scans directories (either here or on the remote server) + and builds up the models we can access later. + It does NOT read or validate anything in the JSON data attached to each wallet. Those checks + are done at runtime, when a wallet is accessed, not at import time. + ''' print(' - Loading Survey Scans') SingleScan.objects.all().delete() |