scripts/qmp-shell: Remove too-broad-exception
We are only anticipating QMPShellErrors here, for syntax we weren't able to understand. Other errors, if any, should be allowed to percolate upwards. Signed-off-by: John Snow <jsnow@redhat.com> Message-id: 20210607200649.1840382-36-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
c83055ef1d
commit
26d3ce9e5e
@ -291,10 +291,13 @@ class QMPShell(qmp.QEMUMonitorProtocol):
|
|||||||
def _execute_cmd(self, cmdline: str) -> bool:
|
def _execute_cmd(self, cmdline: str) -> bool:
|
||||||
try:
|
try:
|
||||||
qmpcmd = self.__build_cmd(cmdline)
|
qmpcmd = self.__build_cmd(cmdline)
|
||||||
except Exception as err:
|
except QMPShellError as err:
|
||||||
print('Error while parsing command line: %s' % err)
|
print(
|
||||||
print('command format: <command-name> ', end=' ')
|
f"Error while parsing command line: {err!s}\n"
|
||||||
print('[arg-name1=arg1] ... [arg-nameN=argN]')
|
"command format: <command-name> "
|
||||||
|
"[arg-name1=arg1] ... [arg-nameN=argN",
|
||||||
|
file=sys.stderr
|
||||||
|
)
|
||||||
return True
|
return True
|
||||||
# For transaction mode, we may have just cached the action:
|
# For transaction mode, we may have just cached the action:
|
||||||
if qmpcmd is None:
|
if qmpcmd is None:
|
||||||
|
Loading…
Reference in New Issue
Block a user