aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/forms.py')
-rw-r--r--src/web/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index dc4266c8..7b1893e2 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -75,7 +75,7 @@ class RedirectForm(FlaskForm):
next = HiddenField()
def __init__(self, *args, **kwargs):
- Form.__init__(self, *args, **kwargs)
+ FlaskForm.__init__(self, *args, **kwargs)
if not self.next.data:
self.next.data = misc_utils.get_redirect_target() or ''
bgstack15