Blame SOURCES/0005-boom-pass-add-del-opts-to-edit_entry-in-edit-command.patch

0228ad
 boom/command.py | 4 ++++
0228ad
 1 file changed, 4 insertions(+)
0228ad
0228ad
diff --git a/boom/command.py b/boom/command.py
0228ad
index 8900457..165a8a8 100644
0228ad
--- a/boom/command.py
0228ad
+++ b/boom/command.py
0228ad
@@ -2256,6 +2256,9 @@ def _edit_cmd(cmd_args, select, opts, identifier):
0228ad
 
0228ad
     profile = _find_profile(cmd_args, version, machine_id, "edit")
0228ad
 
0228ad
+    add_opts = cmd_args.add_opts
0228ad
+    del_opts = cmd_args.del_opts
0228ad
+
0228ad
     arch = cmd_args.architecture
0228ad
 
0228ad
     try:
0228ad
@@ -2264,6 +2267,7 @@ def _edit_cmd(cmd_args, select, opts, identifier):
0228ad
                         lvm_root_lv=lvm_root_lv,
0228ad
                         btrfs_subvol_path=btrfs_subvol_path,
0228ad
                         btrfs_subvol_id=btrfs_subvol_id, profile=profile,
0228ad
+                        add_opts=add_opts, del_opts=del_opts,
0228ad
                         architecture=arch, expand=cmd_args.expand_variables)
0228ad
     except ValueError as e:
0228ad
         print(e)