summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages.py b/packages.py
index 275c7c764..33457772d 100644
--- a/packages.py
+++ b/packages.py
@@ -141,10 +141,10 @@ def turnOnFilesystems(anaconda):
type = "custom",
custom_buttons = [_("_Exit installer")])
sys.exit(1)
- except DeviceError as msg:
+ except DeviceError as (msg, device):
anaconda.intf.detailedMessageWindow(_("Device Setup Failed"),
_("An error was encountered while "
- "activating your storage configuration."),
+ "setting up device %s.") % (device,),
msg,
type = "custom",
custom_buttons = [_("_Exit installer")])