From 1d413d1e60951a5a65f39971cbfc67501420761d Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos Date: Wed, 8 Aug 2012 16:34:52 +0300 Subject: [PATCH] Use the description field inputed in the wizard Make the ImageDescription field of the dialog wizard overwrite the DESCRIPTION image property. --- image_creator/dialog_wizard.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/image_creator/dialog_wizard.py b/image_creator/dialog_wizard.py index e26975e..693588f 100644 --- a/image_creator/dialog_wizard.py +++ b/image_creator/dialog_wizard.py @@ -187,7 +187,9 @@ def extract_image(session): #Shrink size = device.shrink() + metadata.update(device.meta) + metadata['DESCRIPTION'] = wizard['ImageDescription'] #MD5 md5 = MD5(out) -- 1.7.10.4