Skip to content

Commit d1f2176

Browse files
committed
Fix deprecated class usage
1 parent 9aac437 commit d1f2176

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robotide/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def _show_old_wxpython_warning_if_needed(parent=None):
114114
% wx.VERSION_STRING)
115115
style = wx.ICON_EXCLAMATION
116116
if not parent:
117-
_ = wx.PySimpleApp()
117+
_ = wx.PyApp()
118118
parent = wx.Frame(None, size=(0,0))
119119
wx.MessageDialog(parent, message, title, style).ShowModal()
120120

0 commit comments

Comments
 (0)