diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-10-05 14:45:46 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-10-05 14:45:46 +0300 |
commit | ed993761a17841bb9295b5a468c9c5716ba4ffb2 (patch) | |
tree | 4e8096c9a0eadeeacbd89952ab8552e45a109e75 /core/views/scans.py | |
parent | fcfa59cdf7273c97c022fb1ba2b249f4199811ba (diff) | |
download | troggle-ed993761a17841bb9295b5a468c9c5716ba4ffb2.tar.gz troggle-ed993761a17841bb9295b5a468c9c5716ba4ffb2.tar.bz2 troggle-ed993761a17841bb9295b5a468c9c5716ba4ffb2.zip |
clean up small errors and debugging
Diffstat (limited to 'core/views/scans.py')
-rw-r--r-- | core/views/scans.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/views/scans.py b/core/views/scans.py index 6efcce1..c7295a9 100644 --- a/core/views/scans.py +++ b/core/views/scans.py @@ -189,10 +189,10 @@ def parse_name_list(w): peeps.add(crew[n.lower()].person) else: if n.startswith("*"): #ignore people flagged as guests or not-expo anyway, such as ARGE - pass + continue nobod = n.lower() if nobod == "unknown" or nobod == "nobody" or nobod == " " or nobod == "": - pass + continue else: wurl = f"/walletedit/{w.walletname.replace('#',':')}" message = f"{w} name '{n.lower()}' NOT found in GetPersonExpeditionNameLookup({w.year()}) ?!" |