summaryrefslogtreecommitdiffstats
path: root/accounts/views/login/forms.py
diff options
context:
space:
mode:
authorVincent Post <cent@spline.de>2020-08-07 16:57:39 +0200
committerVincent Post <cent@spline.de>2020-08-07 16:57:39 +0200
commitf0a3dfd28d14461caeece9d7c171b6b319049c77 (patch)
tree3dbc76253a78607f1cdfe36d72c5b93e6a66baf8 /accounts/views/login/forms.py
parent1db4f84c5adb2e33ea8d065cb6bcb0e7eeedc02f (diff)
downloadweb-f0a3dfd28d14461caeece9d7c171b6b319049c77.tar.gz
web-f0a3dfd28d14461caeece9d7c171b6b319049c77.tar.bz2
web-f0a3dfd28d14461caeece9d7c171b6b319049c77.zip
2to3 -w accounts contrib
Diffstat (limited to 'accounts/views/login/forms.py')
-rw-r--r--accounts/views/login/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/views/login/forms.py b/accounts/views/login/forms.py
index a82fa39..2db25b9 100644
--- a/accounts/views/login/forms.py
+++ b/accounts/views/login/forms.py
@@ -4,5 +4,5 @@ from wtforms import TextField, PasswordField, validators
class LoginForm(Form):
- username = TextField(u'Benutzername')
+ username = TextField('Benutzername')
password = PasswordField('Passwort', [validators.Required()])