diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-09-18 20:24:53 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-09-18 20:24:53 -0400 |
| commit | 9203283081d255e20dc78839398fed9e038931b2 (patch) | |
| tree | 630179c2456d4de1e16a22cdc0d2777da04ebb2f /lib/i18n.py | |
| parent | f637043fa42d19faef7f1e26899f8423de8e4c9b (diff) | |
use ugettext() instead of gettext()
Diffstat (limited to 'lib/i18n.py')
| -rw-r--r-- | lib/i18n.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/i18n.py b/lib/i18n.py index 045fa1b2..98f63ec1 100644 --- a/lib/i18n.py +++ b/lib/i18n.py @@ -30,7 +30,7 @@ def localize(languages=None): global translation, _ translation = gettext.translation("inkstitch", locale_dir, fallback=True) - _ = translation.gettext + _ = translation.ugettext _set_locale_dir() |
