Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
abbbi committed Oct 21, 2024
1 parent f92350d commit c47cc00
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions libqmpbackup/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,7 @@ def snapshot_rebase(argv):
f'qemu-img snapshot -c "{os.path.basename(image)}" "{images[0]}"'
)
log.info(snapshot_cmd)
rebase_cmd = (
f'qemu-img rebase -f qcow2 -F qcow2 -b "{images[0]}" "{image}"'
)
rebase_cmd = f'qemu-img rebase -f qcow2 -F qcow2 -b "{images[0]}" "{image}"'
log.info(rebase_cmd)
commit_cmd = "qemu-img commit -b " f'"{images[0]}" ' f'"{image}"'
log.info(commit_cmd)
Expand Down

0 comments on commit c47cc00

Please sign in to comment.