diff options
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()}) ?!" |