From 2a556d5b9bf9407558293209c8957fcad3e73f81 Mon Sep 17 00:00:00 2001 From: KF7EEL Date: Wed, 1 Sep 2021 13:25:52 -0700 Subject: [PATCH] fix missing character --- web/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app.py b/web/app.py index 7a79745..bc0e147 100644 --- a/web/app.py +++ b/web/app.py @@ -1150,7 +1150,7 @@ def create_app(): if request.form.get('callsign'): callsign = request.form.get('callsign') u = User.query.filter_by(username=callsign).first() - if u.notes = None: + if u.notes == None: user_notes = '' confirm_link = '' if u.email_confirmed_at == None: