summary refs log tree commit diff stats
path: root/python
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2021-05-27 17:16:45 -0400
committerJohn Snow <jsnow@redhat.com>2021-06-01 16:21:21 -0400
commitee1a27235b7965bc5514555eec898f4d067fced2 (patch)
tree4006004277ef10140692d0e2cca0694a06e0e9b0 /python
parent41787552de447733debe0616b716a0aa138242c7 (diff)
downloadfocaccia-qemu-ee1a27235b7965bc5514555eec898f4d067fced2.tar.gz
focaccia-qemu-ee1a27235b7965bc5514555eec898f4d067fced2.zip
python/console_socket: avoid one-letter variable
Fixes pylint warnings.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20210527211715.394144-2-jsnow@redhat.com
Message-id: 20210517184808.3562549-2-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python')
-rw-r--r--python/qemu/console_socket.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/python/qemu/console_socket.py b/python/qemu/console_socket.py
index ac21130e44..87237bebef 100644
--- a/python/qemu/console_socket.py
+++ b/python/qemu/console_socket.py
@@ -46,11 +46,11 @@ class ConsoleSocket(socket.socket):
             self._drain_thread = self._thread_start()
 
     def __repr__(self) -> str:
-        s = super().__repr__()
-        s = s.rstrip(">")
-        s = "%s,  logfile=%s, drain_thread=%s>" % (s, self._logfile,
-                                                   self._drain_thread)
-        return s
+        tmp = super().__repr__()
+        tmp = tmp.rstrip(">")
+        tmp = "%s,  logfile=%s, drain_thread=%s>" % (tmp, self._logfile,
+                                                     self._drain_thread)
+        return tmp
 
     def _drain_fn(self) -> None:
         """Drains the socket and runs while the socket is open."""