summaryrefslogtreecommitdiffstats
path: root/booty
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2009-06-30 15:48:47 -0400
committerJeremy Katz <katzj@redhat.com>2009-07-01 10:21:36 -0400
commit4a96b26da24f705156beea543868b1418ced07db (patch)
treed70732602b75aaa54e7dafb0c5b4a8342dfd128e /booty
parentd2f5b023c2296ea8e4fa6448bfb9a6517da82a80 (diff)
downloadanaconda-4a96b26da24f705156beea543868b1418ced07db.tar.gz
anaconda-4a96b26da24f705156beea543868b1418ced07db.tar.xz
anaconda-4a96b26da24f705156beea543868b1418ced07db.zip
Stop using rhpl.translate
Use python's gettext module instead of rhpl.translate
Diffstat (limited to 'booty')
-rw-r--r--booty/bootloaderInfo.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/booty/bootloaderInfo.py b/booty/bootloaderInfo.py
index 8e09c5030..0cee1f6dc 100644
--- a/booty/bootloaderInfo.py
+++ b/booty/bootloaderInfo.py
@@ -24,9 +24,12 @@ import string
import struct
from copy import copy
+import gettext
+_ = lambda x: gettext.ldgettext("anaconda", x)
+N_ = lambda x: x
+
from lilo import LiloConfigFile
import rhpl
-from rhpl.translate import _, N_
from flags import flags
import iutil