Skip to content

Commit

Permalink
virsh_restore: fix eval error
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Zheng <[email protected]>
  • Loading branch information
dzhengfy committed Mar 1, 2025
1 parent 7a7e1d0 commit 586be17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libvirt/tests/src/virsh_cmd/domain/virsh_restore.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def check_file_own(file_path, exp_uid, exp_gid):
check_log = params.get("check_log")
check_str_not_in_log = params.get("check_str_not_in_log")
qemu_conf_dict = eval(params.get("qemu_conf_dict", "{}"))
os_update_dict = eval(params.get("os_update_dict"))
os_update_dict = eval(params.get("os_update_dict", "{}"))

vm_ref_uid = None
vm_ref_gid = None
Expand Down

0 comments on commit 586be17

Please sign in to comment.