From c8d7bebc05568873b0ac0ff641a5c16303473f8d Mon Sep 17 00:00:00 2001 From: moculus Date: Wed, 23 Apr 2008 21:21:50 +0000 Subject: [PATCH] --HG-- branch : pmacs2 --- application.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/application.py b/application.py index a6608fa..1e13a71 100755 --- a/application.py +++ b/application.py @@ -779,7 +779,10 @@ class Application(object): lines = self._get_mini_lines(self.error_string) for i in range(0, len(lines)): line = util.pad(lines[i], self.x - 1) - self.win.addstr(self.y - len(lines) + i, 0, line) + try: + self.win.addstr(self.y - len(lines) + i, 0, line) + except: + pass def draw_mini_buffer(self): b = self.mini_buffer