summaryrefslogtreecommitdiffstats
path: root/pyanaconda/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyanaconda/text.py')
-rw-r--r--pyanaconda/text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/text.py b/pyanaconda/text.py
index a5dd1a57c..89c858d65 100644
--- a/pyanaconda/text.py
+++ b/pyanaconda/text.py
@@ -260,7 +260,7 @@ class InstallInterface(InstallInterfaceBase):
def reinitializeWindow(self, title, path, size, description):
grid = GridForm(self.screen, title, 1, 3)
- text = TEXT_REINITIALIZE % (description, size, path)
+ text = TEXT_REINITIALIZE % {"description": description, "size": size, "devicePath": path}
grid.add(TextboxReflowed(70, text), 0, 0)
all_devices_cb = Checkbox(TEXT_REINITIALIZE_ALL, isOn=False)