diff options
| author | John Snow | 2021-06-07 22:06:12 +0200 |
|---|---|---|
| committer | John Snow | 2021-06-18 22:10:06 +0200 |
| commit | f2daa2d489d7b4f94288d6fafb8072fb1ea384a9 (patch) | |
| tree | e023179619115488d860dffd2ad5948ad95c8f2b /scripts/qmp/qmp-shell | |
| parent | scripts/qmp-shell: fix exception handling (diff) | |
| download | qemu-f2daa2d489d7b4f94288d6fafb8072fb1ea384a9.tar.gz qemu-f2daa2d489d7b4f94288d6fafb8072fb1ea384a9.tar.xz qemu-f2daa2d489d7b4f94288d6fafb8072fb1ea384a9.zip | |
scripts/qmp-shell: fix connect method signature
It needs to match the parent's signature -- the negotiate parameter must
be optional.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 20210607200649.1840382-6-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'scripts/qmp/qmp-shell')
| -rwxr-xr-x | scripts/qmp/qmp-shell | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qmp/qmp-shell b/scripts/qmp/qmp-shell index 413dd4d2de..04ca6a25ae 100755 --- a/scripts/qmp/qmp-shell +++ b/scripts/qmp/qmp-shell @@ -278,7 +278,7 @@ class QMPShell(qmp.QEMUMonitorProtocol): self._print(resp) return True - def connect(self, negotiate): + def connect(self, negotiate: bool = True): self._greeting = super(QMPShell, self).connect(negotiate) self.__completer_setup() |
