[Console] Fix super usage breaking console

This commit is contained in:
Calum Lind 2017-03-29 21:21:45 +01:00
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, 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, border_off_west=0, border_off_north=0, border_off_east=0, border_off_south=0,
active_wrap=False, **kwargs): active_wrap=False, **kwargs):
super(BaseInputPane, self).__init__() InputKeyHandler.__init__(self)
self.inputs = [] self.inputs = []
self.mode = mode self.mode = mode
self.active_input = 0 self.active_input = 0