diff options
author | Lukáš Doktor <ldoktor@redhat.com> | 2017-08-18 16:26:13 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2017-09-15 20:12:00 -0300 |
commit | 4d9342977a2e8b195609d332fcd64a93a48c158b (patch) | |
tree | 10d4a63f63fdbb13776c1c95592c8599f4abfd77 | |
parent | 7b6b9dbb3c4cb7eac4c847d601735da9b1d150ce (diff) | |
download | qemu-4d9342977a2e8b195609d332fcd64a93a48c158b.zip qemu-4d9342977a2e8b195609d332fcd64a93a48c158b.tar.gz qemu-4d9342977a2e8b195609d332fcd64a93a48c158b.tar.bz2 |
qtest.py: Few pylint/style fixes
No actual code changes, just few pylint/style fixes.
Signed-off-by: Lukáš Doktor <ldoktor@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Message-Id: <20170818142613.32394-11-ldoktor@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
-rw-r--r-- | scripts/qtest.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/scripts/qtest.py b/scripts/qtest.py index ab183c0..df0daf2 100644 --- a/scripts/qtest.py +++ b/scripts/qtest.py @@ -11,14 +11,11 @@ # Based on qmp.py. # -import errno import socket -import string import os -import subprocess -import qmp.qmp import qemu + class QEMUQtestProtocol(object): def __init__(self, address, server=False): """ @@ -83,8 +80,10 @@ class QEMUQtestMachine(qemu.QEMUMachine): socket_scm_helper=None): if name is None: name = "qemu-%d" % os.getpid() - super(QEMUQtestMachine, self).__init__(binary, args, name=name, test_dir=test_dir, - socket_scm_helper=socket_scm_helper) + super(QEMUQtestMachine, + self).__init__(binary, args, name=name, test_dir=test_dir, + socket_scm_helper=socket_scm_helper) + self._qtest = None self._qtest_path = os.path.join(test_dir, name + "-qtest.sock") def _base_args(self): |