diff options
-rw-r--r-- | src/windows.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/windows.py b/src/windows.py index e77bb18b..b0c9f314 100644 --- a/src/windows.py +++ b/src/windows.py @@ -64,10 +64,10 @@ class Win(object): self.height, self.width = height, width return self.height, self.width, self.x, self.y = height, width, x, y - # try: - self._win = Win._tab_win.derwin(height, width, y, x) - # except: - # log.debug('DEBUG: mvwin returned ERR. Please investigate') + try: + self._win = Win._tab_win.derwin(height, width, y, x) + except: + log.debug('DEBUG: mvwin returned ERR. Please investigate') # If this ever fail, uncomment that ^ |