summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-02-05 17:19:30 +0000
committerMatt Wilson <msw@redhat.com>2002-02-05 17:19:30 +0000
commitf4f9020cddeeeb2c2aae11d51392726daee19ff4 (patch)
tree2b24448f1c63c5d4b04e494eaaa593d908a6748b /text.py
parente2ab4a689a7367bc306663fe33f4464383a5d976 (diff)
downloadanaconda-f4f9020cddeeeb2c2aae11d51392726daee19ff4.tar.gz
anaconda-f4f9020cddeeeb2c2aae11d51392726daee19ff4.tar.xz
anaconda-f4f9020cddeeeb2c2aae11d51392726daee19ff4.zip
fixed text mode parted exceptions when translated
Diffstat (limited to 'text.py')
-rw-r--r--text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.py b/text.py
index b438132d1..e91d8a008 100644
--- a/text.py
+++ b/text.py
@@ -293,7 +293,7 @@ class InstallInterface:
for flag, errorstring in flags:
if exc.options & flag:
buttons.append(_(errorstring))
- buttonToAction[string.lower(errorstring)] = flag
+ buttonToAction[string.lower(_(errorstring))] = flag
rc = ButtonChoiceWindow(self.screen, exc.type_string, exc.message,
buttons=buttons)