summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-09-13 14:58:54 -0400
committerChris Lumens <clumens@redhat.com>2012-09-14 13:13:53 -0400
commit984fa2078c7d41adc491956ece4e7d70d33a263e (patch)
tree1324c646637230d01a9f9e796f583c746aab7547
parent09e2ac409bef67affcccb4937d50413d4d011067 (diff)
downloadanaconda-984fa2078c7d41adc491956ece4e7d70d33a263e.tar.gz
anaconda-984fa2078c7d41adc491956ece4e7d70d33a263e.tar.xz
anaconda-984fa2078c7d41adc491956ece4e7d70d33a263e.zip
Make sure the InstallOptionsNDialogs get the correct space labels.
The #2 and #3 dialogs already grab the correct labels so by trying to do so again in _set_free_space_labels, we're making sure to get the wrong thing and end up with a traceback.
-rw-r--r--pyanaconda/ui/gui/spokes/storage.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/pyanaconda/ui/gui/spokes/storage.py b/pyanaconda/ui/gui/spokes/storage.py
index e3890b760..96e764f45 100644
--- a/pyanaconda/ui/gui/spokes/storage.py
+++ b/pyanaconda/ui/gui/spokes/storage.py
@@ -145,9 +145,6 @@ class InstallOptions1Dialog(GUIObject):
options_label.set_markup(options_text)
def _set_free_space_labels(self, disk_free, fs_free):
- self.disk_free_label = self.builder.get_object("options1_disk_free_label")
- self.fs_free_label = self.builder.get_object("options1_fs_free_label")
-
disk_free_text = size_str(disk_free)
self.disk_free_label.set_text(disk_free_text)