1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-25 16:02:28 +01:00

we are at failing tests, good

This commit is contained in:
Guido Serra
2019-08-14 16:24:14 +02:00
parent 2a52b83583
commit 364db09a6e
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ import locale
import sys
import re
import string
import gobject
from gi.repository import GObject as gobject
from threading import Thread
from subprocess import Popen, STDOUT, PIPE, call
from subprocess import getoutput

View File

@@ -52,7 +52,7 @@ def get_gettext():
langs += ["en_US"]
lang = gettext.translation('wicd', local_path, languages=langs,
fallback=True)
return lang.ugettext
return lang.gettext
_ = get_gettext()