Skip to content

Commit

Permalink
Fix issue with tests and Qemu version on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Jul 6, 2023
1 parent c181df6 commit 8e2989d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gns3server/compute/qemu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ async def get_qemu_version(qemu_path):
return version
except (UnicodeDecodeError, OSError) as e:
log.warning("could not read {}: {}".format(version_file, e))
return None
return ""
else:
try:
output = await subprocess_check_output(qemu_path, "-version", "-nographic")
Expand Down

0 comments on commit 8e2989d

Please sign in to comment.