diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-10 12:07:59 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-10 12:07:59 -0500 |
commit | 7960ac985f9b5a80063f21012d53793cb2d22dd9 (patch) | |
tree | 2b46212789898fc006ab4e6481efcbc47e6cee6e /mediagoblin/submit/forms.py | |
parent | c22d624af3cc473d3b31baaf6f1a32a498a949e0 (diff) | |
download | mediagoblin-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/submit/forms.py')
-rw-r--r-- | mediagoblin/submit/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/submit/forms.py b/mediagoblin/submit/forms.py index ccb62a03..241d32dc 100644 --- a/mediagoblin/submit/forms.py +++ b/mediagoblin/submit/forms.py @@ -18,7 +18,7 @@ import wtforms from mediagoblin.util import tag_length_validator -from mediagoblin.util import pass_to_ugettext as _ +from mediagoblin.util import fake_ugettext_passthrough as _ class SubmitStartForm(wtforms.Form): |