mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-10 11:36:01 +00:00
Fix warning related to gettext
This commit is contained in:
parent
15c250e152
commit
d6c96d6291
@ -114,7 +114,7 @@ def setup_translation():
|
||||
# Workaround for Python 2 unicode gettext (keyword removed in Py3).
|
||||
kwargs = {} if not deluge.common.PY2 else {'unicode': True}
|
||||
|
||||
gettext.install(I18N_DOMAIN, translations_path, names='ngettext', **kwargs)
|
||||
gettext.install(I18N_DOMAIN, translations_path, names=['ngettext'], **kwargs)
|
||||
builtins.__dict__['_n'] = builtins.__dict__['ngettext']
|
||||
|
||||
libintl = None
|
||||
|
Loading…
x
Reference in New Issue
Block a user