Restaure try: except: on derwin
This commit is contained in:
parent
158692fa99
commit
f895d4a2f9
1 changed files with 4 additions and 4 deletions
|
@ -64,10 +64,10 @@ class Win(object):
|
||||||
self.height, self.width = height, width
|
self.height, self.width = height, width
|
||||||
return
|
return
|
||||||
self.height, self.width, self.x, self.y = height, width, x, y
|
self.height, self.width, self.x, self.y = height, width, x, y
|
||||||
# try:
|
try:
|
||||||
self._win = Win._tab_win.derwin(height, width, y, x)
|
self._win = Win._tab_win.derwin(height, width, y, x)
|
||||||
# except:
|
except:
|
||||||
# log.debug('DEBUG: mvwin returned ERR. Please investigate')
|
log.debug('DEBUG: mvwin returned ERR. Please investigate')
|
||||||
|
|
||||||
# If this ever fail, uncomment that ^
|
# If this ever fail, uncomment that ^
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue