1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-07-24 15:59:42 +02:00
This commit is contained in:
dbarzin 2023-03-03 14:14:27 +01:00
parent a5b124c010
commit deaae84ed7

View file

@ -278,7 +278,7 @@ class PandoraBox:
if self.has_curses:
# display log on screen
self.logs.append(msg)
if len(self.logs)>(curses.LINES-22):
if len(self.logs) > (curses.LINES - 22):
self.logs.pop(0)
self._log_update()