From f43afc90db2671479e1b077fd9842830a9bf2f17 Mon Sep 17 00:00:00 2001 From: Mike Hiretsky Date: Tue, 26 Jul 2011 10:36:01 +0400 Subject: [PATCH] Fix print scheme in show-partition. --- pym/cl_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/cl_install.py b/pym/cl_install.py index bf4cd64..4bb4853 100644 --- a/pym/cl_install.py +++ b/pym/cl_install.py @@ -1805,7 +1805,7 @@ class cl_install(color_print, SignalInterrupt): return _("Partition on disk") elif "raid-partition" == diskScheme: return _("Partition on RAID") - elif "disk" in diskScheme: + elif "disk" == diskScheme: return _("Disk without partitions") elif "lvm" in diskScheme: return _("LVM")