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 f45339b commit d1a9896Copy full SHA for d1a9896
build-a-gui-with-wxpython/mp3_tag_editor.py
@@ -117,7 +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:", style=wx.DD_DEFAULT_STYLE)
+ dlg = wx.DirDialog(self, "Choose a directory:",
121
+ 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