When I run this code:
sql = "SELECT Name FROM nameDatabase"
self.cursor.execute(sql)
list=self.cursor.fetchall()
print list
I get:
>>> [(u'Joe',), (u'Katie',), (u'Bob',), (u'Ian',)]
However, if I try to make a SingleChoiceDialog with wxpython it does not like that list.
Is there any way to get those values in a so it would look like:
>>>
I appreciate any help or suggestions.