P
Peter Chant
The following code generates a QStringList:
fileNames = QFileDialog.getOpenFileNames(None,"Chose raw file",".",)
Printing it:
print "Files selected "+QStringList(fileNames)
Results in:
TypeError: cannot concatenate 'str' and 'QStringList' objects
Any idea how to convert a QStingList into a python list? pythonQtConv seems
to come up in google but I've no idea how to import or invoke it.
Thoughts?
Pete
fileNames = QFileDialog.getOpenFileNames(None,"Chose raw file",".",)
Printing it:
print "Files selected "+QStringList(fileNames)
Results in:
TypeError: cannot concatenate 'str' and 'QStringList' objects
Any idea how to convert a QStingList into a python list? pythonQtConv seems
to come up in google but I've no idea how to import or invoke it.
Thoughts?
Pete