KeyError with Django, Sociable app and accented characters?
I have a problem with my accented characters. Django admin saves my data without encoding to something like "á" Example: if im trying to use a word like "Canción", i would like it to save in this way: Canción, and not Canción. i have in my SETTING: DEFAULT_CHARSET = 'utf-8' i have in my mysql database: utf8_general_ci I...