From d4c179fa52900a1703c8011112097faca2bd9ec2 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 9 Mar 2019 12:51:36 -0800 Subject: [PATCH] closes issue #381 - super() usage incompatible with python2.7 --- gooey/gui/components/widgets/basictextconsole.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gooey/gui/components/widgets/basictextconsole.py b/gooey/gui/components/widgets/basictextconsole.py index d2841f5..26952bd 100644 --- a/gooey/gui/components/widgets/basictextconsole.py +++ b/gooey/gui/components/widgets/basictextconsole.py @@ -2,4 +2,4 @@ import wx class BasicTextConsole(wx.TextCtrl): def __init__(self, parent): - super().__init__(parent, -1, "", style=wx.TE_MULTILINE | wx.TE_READONLY | wx.TE_RICH) + super(BasicTextConsole, self).__init__(parent, -1, "", style=wx.TE_MULTILINE | wx.TE_READONLY | wx.TE_RICH)