The grub2 configuration file in Fedora 16 can have GPT partition references like (hd0,gpt2) so remove the "gpt" string where necessary Signed-off-by: Michael Young --- a/tools/pygrub/src/GrubConf.py 2011-10-17 21:26:48.000000000 +0100 +++ b/tools/pygrub/src/GrubConf.py 2011-10-17 21:31:41.000000000 +0100 @@ -79,6 +79,8 @@ val = val.replace("(", "").replace(")", "") if val[:5] == "msdos": val = val[5:] + if val[:3] == "gpt": + val = val[3:] self._part = int(val) part = property(get_part, set_part)