Browse Source

closes issue #381 - super() usage incompatible with python2.7

pull/473/head
Chris 6 years ago
parent
commit
d4c179fa52
1 changed files with 1 additions and 1 deletions
  1. 2
      gooey/gui/components/widgets/basictextconsole.py

2
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)
Loading…
Cancel
Save