diff --git a/applepy.py b/applepy.py index 44ac7aa..237abed 100644 --- a/applepy.py +++ b/applepy.py @@ -63,7 +63,10 @@ class Memory: else: attr = curses.A_DIM - self.win.addch(row, column, c, attr) + try: + self.win.addch(row, column, c, attr) + except curses.error: + pass class CPU: