aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/auth/forms.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-08-10 12:07:59 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-08-10 12:07:59 -0500
commit7960ac985f9b5a80063f21012d53793cb2d22dd9 (patch)
tree2b46212789898fc006ab4e6481efcbc47e6cee6e /mediagoblin/auth/forms.py
parentc22d624af3cc473d3b31baaf6f1a32a498a949e0 (diff)
downloadmediagoblin-7960ac985f9b5a80063f21012d53793cb2d22dd9.tar.lz
mediagoblin-7960ac985f9b5a80063f21012d53793cb2d22dd9.tar.xz
mediagoblin-7960ac985f9b5a80063f21012d53793cb2d22dd9.zip
Converting all forms to use the "fake/null" gettext conversion function
Gettext doesn't actually get run right in the form but we do need to wrap the strings in _() so stuff extracts :)
Diffstat (limited to 'mediagoblin/auth/forms.py')
-rw-r--r--mediagoblin/auth/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/auth/forms.py b/mediagoblin/auth/forms.py
index 1b6bc7c2..917909c5 100644
--- a/mediagoblin/auth/forms.py
+++ b/mediagoblin/auth/forms.py
@@ -16,7 +16,7 @@
import wtforms
-from mediagoblin.util import pass_to_ugettext as _
+from mediagoblin.util import fake_ugettext_passthrough as _
class RegistrationForm(wtforms.Form):