We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1a9896 commit ca5f822Copy full SHA for ca5f822
build-a-gui-with-wxpython/mp3_tag_editor.py
@@ -117,8 +117,8 @@ def create_menu(self):
117
self.SetMenuBar(menu_bar)
118
119
def on_open_folder(self, event):
120
- dlg = wx.DirDialog(self, "Choose a directory:",
121
- style=wx.DD_DEFAULT_STYLE)
+ title = "Choose a directory:"
+ dlg = wx.DirDialog(self, title, style=wx.DD_DEFAULT_STYLE)
122
if dlg.ShowModal() == wx.ID_OK:
123
self.panel.update_mp3_listing(dlg.GetPath())
124
dlg.Destroy()
0 commit comments