From 50e35f622adda22ca409fd80826d03eae02d16cd Mon Sep 17 00:00:00 2001 From: Mike Hiretsky Date: Thu, 21 Jul 2011 13:31:27 +0400 Subject: [PATCH] Fix get part table. --- pym/cl_fill_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/cl_fill_install.py b/pym/cl_fill_install.py index 77ec7fd..a0cfdd7 100644 --- a/pym/cl_fill_install.py +++ b/pym/cl_fill_install.py @@ -299,7 +299,7 @@ class fillVars(object, glob_attr): fstab.getBy(what=fstab.TYPE,eq=devName) or \ props.get('ID_FS_TYPE','') dev_hash['name'] = props.get('ID_FS_LABEL','') - dev_hash['table'] = props.get('ID_PART_TABLE_TYPE','') + dev_hash['table'] = props.get('ID_PART_ENTRY_SCHEME','') dev_hash['type'] = getDeviceType(disk) dev_hash['id'] =props.get('ID_PART_ENTRY_TYPE','').partition("x")[2] devParent = getPartitionDevice(disk)