diff options
author | Matt Wilson <msw@redhat.com> | 2000-12-12 21:35:44 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-12-12 21:35:44 +0000 |
commit | 2722e7eb67339247838883fb38f2461c4c4f7f0d (patch) | |
tree | 56ba7211533c960bb5dd81829a8fc014c2195017 /textw | |
parent | d0fb24738ee9312521d5b4ec75ac1a79a5ab26b0 (diff) | |
download | anaconda-2722e7eb67339247838883fb38f2461c4c4f7f0d.tar.gz anaconda-2722e7eb67339247838883fb38f2461c4c4f7f0d.tar.xz anaconda-2722e7eb67339247838883fb38f2461c4c4f7f0d.zip |
fixes for alpha
Diffstat (limited to 'textw')
-rw-r--r-- | textw/lilo_text.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/textw/lilo_text.py b/textw/lilo_text.py index c83423162..628201297 100644 --- a/textw/lilo_text.py +++ b/textw/lilo_text.py @@ -3,8 +3,10 @@ from snack import * from constants_text import * from translate import _ import string -import edd - +import iutil +if iutil.getArch() == 'i386': + import edd + #cat = gettext.Catalog ("anaconda", "/usr/share/locale") #_ = cat.gettext |