mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-03-27 03:13:10 +00:00
Fix the for loop ranging over vmi labels. This loop is missing the .items() statement, which it causes the following error: ``` for key, value in vmi.metadata.labels: ValueError: too many values to unpack (expected 2) ``` Signed-off-by: Javier Cano Cano <jcanocan@redhat.com>