summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2013-02-20 07:20:29 -0500
committerChris Lumens <clumens@redhat.com>2013-02-20 07:20:29 -0500
commit06609c9a6cd4fce3a79be207ef78858a917948d7 (patch)
tree16ed39b9b3f7161a699b0f27c686eefa165db118
parent62fdc27f188258a44f88cbbecead28a5a5e6f8e3 (diff)
downloadanaconda-06609c9a6cd4fce3a79be207ef78858a917948d7.tar.gz
anaconda-06609c9a6cd4fce3a79be207ef78858a917948d7.tar.xz
anaconda-06609c9a6cd4fce3a79be207ef78858a917948d7.zip
Don't treat the _ in x86_64 as a mnemonic.
-rw-r--r--pyanaconda/ui/gui/spokes/custom.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyanaconda/ui/gui/spokes/custom.py b/pyanaconda/ui/gui/spokes/custom.py
index 6449d1641..ddddcb3f2 100644
--- a/pyanaconda/ui/gui/spokes/custom.py
+++ b/pyanaconda/ui/gui/spokes/custom.py
@@ -263,6 +263,8 @@ class ConfirmDeleteDialog(GUIObject):
label = self.builder.get_object("confirmLabel")
self._removeAll = self.builder.get_object("removeAllCheckbox")
+ if rootName and "_" in rootName:
+ rootName = rootName.replace("_", "__")
self._removeAll.set_label(self._removeAll.get_label() % rootName)
self._removeAll.set_sensitive(rootName is not None)