Python 3.7 does not support continue in a finally block
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
parent
38cea234bb
commit
63407461fe
|
@ -544,12 +544,10 @@ class Squirrel(Hazelnut):
|
||||||
if key == "KEY_MOUSE":
|
if key == "KEY_MOUSE":
|
||||||
try:
|
try:
|
||||||
_, x, y, _, attr = curses.getmouse()
|
_, x, y, _, attr = curses.getmouse()
|
||||||
|
self.handle_mouse_click(y, x, attr)
|
||||||
|
continue
|
||||||
except curses.error:
|
except curses.error:
|
||||||
# This is not a valid click
|
# This is not a valid click
|
||||||
pass
|
|
||||||
else:
|
|
||||||
self.handle_mouse_click(y, x, attr)
|
|
||||||
finally:
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
self.handle_key_pressed(key)
|
self.handle_key_pressed(key)
|
||||||
|
|
Loading…
Reference in New Issue