diff options
Diffstat (limited to 'gdb/testsuite/gdb.python/tui-window.py')
-rw-r--r-- | gdb/testsuite/gdb.python/tui-window.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.python/tui-window.py b/gdb/testsuite/gdb.python/tui-window.py index 47c4403..ebdeaea 100644 --- a/gdb/testsuite/gdb.python/tui-window.py +++ b/gdb/testsuite/gdb.python/tui-window.py @@ -32,8 +32,10 @@ class TestWindow: self.win.erase() w = self.win.width h = self.win.height - self.win.write(string="Test: " + str(self.count) + " " + str(w) + "x" + str(h), - full_window=False) + self.win.write( + string="Test: " + str(self.count) + " " + str(w) + "x" + str(h), + full_window=False, + ) self.count = self.count + 1 # Tries to delete the title attribute. GDB will throw an error. |