diff --git a/image_creator/dialog_menu.py b/image_creator/dialog_menu.py index fd7bc4b0ede0e8516a873dbefebe6934592ba449..11dc1a72e91d1bb629b5bc5a5dc640a56807117c 100644 --- a/image_creator/dialog_menu.py +++ b/image_creator/dialog_menu.py @@ -326,6 +326,7 @@ def delete_clouds(session): (code, to_delete) = d.checklist("Choose which cloud accounts to delete:", choices=choices, width=WIDTH) + to_delete = map(lambda x: x.strip('"'), to_delete) # Needed for OpenSUSE if code in (d.DIALOG_CANCEL, d.DIALOG_ESC): return False @@ -537,6 +538,7 @@ def delete_properties(session): (code, to_delete) = d.checklist("Choose which properties to delete:", choices=choices, width=WIDTH) + to_delete = map(lambda x: x.strip('"'), to_delete) # needed for OpenSUSE # If the user exits with ESC or CANCEL, the returned tag list is empty. for i in to_delete: @@ -586,6 +588,7 @@ def exclude_tasks(session): choices=choices, height=19, list_height=8, width=WIDTH, help_button=1, extra_button=1, extra_label="No Config", title="Exclude Configuration Tasks") + tags = map(lambda x: x.strip('"'), tags) # Needed for OpenSUSE if code in (d.DIALOG_CANCEL, d.DIALOG_ESC): return False @@ -659,6 +662,7 @@ def sysprep(session): "run on the image. Press <Help> to see details about the system " "preparation tasks.", title="Run system preparation tasks", choices=choices, width=70, ok_label="Run", help_button=1) + tags = map(lambda x: x.strip('"'), tags) # Needed for OpenSUSE if code in (d.DIALOG_CANCEL, d.DIALOG_ESC): return False