mirror of https://github.com/xemu-project/xemu.git
scripts/qmp-shell: fix exception handling
Fixes: 50d189c
Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 20210607200649.1840382-5-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
70e5674018
commit
de14ba24f3
|
@ -452,7 +452,7 @@ def main():
|
||||||
die('Didn\'t get QMP greeting message')
|
die('Didn\'t get QMP greeting message')
|
||||||
except qmp.QMPCapabilitiesError:
|
except qmp.QMPCapabilitiesError:
|
||||||
die('Could not negotiate capabilities')
|
die('Could not negotiate capabilities')
|
||||||
except qemu.error:
|
except OSError:
|
||||||
die('Could not connect to %s' % addr)
|
die('Could not connect to %s' % addr)
|
||||||
|
|
||||||
qemu.show_banner()
|
qemu.show_banner()
|
||||||
|
|
Loading…
Reference in New Issue