aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-07 09:27:18 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-07 09:27:18 +0200
commit50392b28721f8fff4143cff484a5cca2aa482093 (patch)
treef2420b9e4dda5ab1bb20527bcf8a238943db77f9 /src/web/forms.py
parentBug fix in the dashboard template. (diff)
downloadnewspipe-50392b28721f8fff4143cff484a5cca2aa482093.tar.gz
newspipe-50392b28721f8fff4143cff484a5cca2aa482093.tar.bz2
newspipe-50392b28721f8fff4143cff484a5cca2aa482093.zip
Removed recaptcha.
Diffstat (limited to 'src/web/forms.py')
-rw-r--r--src/web/forms.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index bf321ae3..c7752ab2 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -34,7 +34,6 @@ from werkzeug.exceptions import NotFound
from wtforms import TextField, TextAreaField, PasswordField, BooleanField, \
SubmitField, IntegerField, SelectField, validators, HiddenField
from flask.ext.wtf.html5 import EmailField
-from flask_wtf import RecaptchaField
from web import utils
from web.controllers import UserController
bgstack15