]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/FileDialog.py
Register the test under the name displayed by "./test -l"
[wxWidgets.git] / wxPython / demo / FileDialog.py
index 4c3a6646761b1576208040d74fd33e2b3c1271c5..da83254005ae333223034c4badfce15577482b36 100644 (file)
@@ -37,8 +37,11 @@ class TestPanel(wx.Panel):
         # Finally, if the directory is changed in the process of getting files, this
         # dialog is set up to change the current working directory to the path chosen.
         dlg = wx.FileDialog(
-            self, message="Choose a file", defaultDir=os.getcwd(), 
-            defaultFile="", wildcard=wildcard, style=wx.OPEN | wx.MULTIPLE | wx.CHANGE_DIR
+            self, message="Choose a file",
+            defaultDir=os.getcwd(), 
+            defaultFile="",
+            wildcard=wildcard,
+            style=wx.OPEN | wx.MULTIPLE | wx.CHANGE_DIR
             )
 
         # Show the dialog and retrieve the user response. If it is the OK response,