Skip to content

Commit

Permalink
report correct filename during exclude/include in case of backing images
Browse files Browse the repository at this point in the history
  • Loading branch information
abbbi committed Oct 9, 2024
1 parent e71a81d commit d5e1387
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libqmpbackup/vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ def get_block_devices(blockinfo, argv, excluded_disks, included_disks):
log.info(
"Device not in included disk list, ignoring: [%s:%s]",
device["device"],
base_filename,
filename,
)
continue

if excluded_disks and device["device"] in excluded_disks:
logging.info(
"Excluding device from backup: [%s:%s]",
device["device"],
base_filename,
filename,
)
continue

Expand Down

0 comments on commit d5e1387

Please sign in to comment.