Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 68bcfb5

Browse files
committed
Fix virt-convert vmdk regression (Joey Boggs)
1 parent 9ac3281 commit 68bcfb5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

virtconv/diskcfg.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,8 @@ def convert(self, indir, outdir, output_format):
235235

236236
if not (out_format == DISK_FORMAT_NONE or
237237
out_format == DISK_FORMAT_VDISK or
238-
out_format == DISK_FORMAT_RAW):
238+
out_format == DISK_FORMAT_RAW or
239+
out_format == DISK_FORMAT_VMDK):
239240
raise NotImplementedError("Cannot convert to disk format %s" %
240241
output_format)
241242

0 commit comments

Comments
 (0)