diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-03-25 18:39:21 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-03-25 18:39:21 +0100 |
commit | 3fcdf69304580650c6244165aae0b1fc46221cff (patch) | |
tree | 0fd3bc3526ee732faa9cc6d30a160e6dbc3e3d2a /papillon/polls/models.py | |
parent | 68eaa550ed54678bc2855f5a45d58073dba59a2d (diff) | |
download | Papillon-3fcdf69304580650c6244165aae0b1fc46221cff.tar.bz2 Papillon-3fcdf69304580650c6244165aae0b1fc46221cff.zip |
Fix static / media mix
Diffstat (limited to 'papillon/polls/models.py')
-rw-r--r-- | papillon/polls/models.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/papillon/polls/models.py b/papillon/polls/models.py index 5fe49d6..506ad79 100644 --- a/papillon/polls/models.py +++ b/papillon/polls/models.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2008-2011 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> +# Copyright (C) 2008-2016 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as @@ -87,8 +87,8 @@ different choices help_text=_("Check this option to make the poll public")) opened_admin = models.BooleanField( default=False, verbose_name=_("Allow users to add choices"), - help_text=_(u"Check this option to open the poll to new choices " - u"submitted by users")) + help_text=_("Check this option to open the poll to new choices " + "submitted by users")) hide_choices = models.BooleanField( default=False, verbose_name=_("Hide votes to new voters"), help_text=_("Check this option to hide poll results to new users")) |