diff options
Diffstat (limited to 'net-p2p/deluge/files/deluge-2.0.3-gettext.patch')
-rw-r--r-- | net-p2p/deluge/files/deluge-2.0.3-gettext.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-p2p/deluge/files/deluge-2.0.3-gettext.patch b/net-p2p/deluge/files/deluge-2.0.3-gettext.patch new file mode 100644 index 000000000000..41cf743749c6 --- /dev/null +++ b/net-p2p/deluge/files/deluge-2.0.3-gettext.patch @@ -0,0 +1,11 @@ +--- a/deluge/i18n/util.py ++++ b/deluge/i18n/util.py +@@ -114,7 +114,7 @@ + # 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 |