aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-26 07:47:25 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-26 07:47:25 +0200
commitb049532adfda00de1ab56e9a0869bfed050f632c (patch)
tree8f4f143a601ca43fa890d5c8e0a64a5460ed1907 /src/web/forms.py
parentUpdated about page. (diff)
downloadnewspipe-b049532adfda00de1ab56e9a0869bfed050f632c.tar.gz
newspipe-b049532adfda00de1ab56e9a0869bfed050f632c.tar.bz2
newspipe-b049532adfda00de1ab56e9a0869bfed050f632c.zip
Minor improvements.
Diffstat (limited to 'src/web/forms.py')
-rw-r--r--src/web/forms.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index 905a0b2a..59a7bde5 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -163,7 +163,8 @@ class ProfileForm(Form):
refresh_rate = IntegerField(lazy_gettext("Feeds refresh frequency "
"(in minutes)"),
default=60)
- is_public_profile = BooleanField(lazy_gettext("Public profile"), default=True)
+ is_public_profile = BooleanField(lazy_gettext("Public profile"),
+ default=True)
submit = SubmitField(lazy_gettext("Save"))
def validate(self):
bgstack15