[Tkinter-discuss] tkFileDialog.askopenfilenames returns unicode string instead of tuple in python 2.62

Jeff Epler jepler at unpythonic.net
Sat Aug 1 14:54:49 CEST 2009


As a workaround, I believe you can use
    input_files = root.tk.splitlist(input_files)
which will correctly deal with filenames that contain embedded
characters that have special meaning in Tcl.

Jeff


More information about the Tkinter-discuss mailing list