[Console] Fix super usage breaking console

This commit is contained in:
Calum Lind 2017-03-29 21:21:45 +01:00
parent d485eb5c8f
commit aa28d73f47

View File

@ -33,7 +33,7 @@ class BaseInputPane(InputKeyHandler):
def __init__(self, mode, allow_rearrange=False, immediate_action=False, set_first_input_active=True,
border_off_west=0, border_off_north=0, border_off_east=0, border_off_south=0,
active_wrap=False, **kwargs):
super(BaseInputPane, self).__init__()
InputKeyHandler.__init__(self)
self.inputs = []
self.mode = mode
self.active_input = 0