Hello.
I'm made a new application in a new web2py installation 2.14.6. The db is PostGis.
It's a mountain bike meeting platform.
There's only one user for the moment, myself ☺.
Here is an event:
You can see that the event description is:
Per chi si vuole unire. Andrò a fare un giretto per le scale del Valentino, e poi qualche su e giu nel parco Leopardi, lavorando su aspetti tecnici.
When I display it in the mtb_ride page no problem:
{{=DIV(event.description, _class='trail_description', _id='trail_description')}}
If I try in the controller to concatenate event.description with event.title:
description = title + ' ' + event.description
I've a ticket, due to the 'ò'. Here is the traceback:
I've seen that someone have got a similar problem and resolved it installing psycopg2.
I've installed it:
pip install psycopg2
I've restarted the server.
Problem still the same.
Can someone give me a hand?
Thanks, regards.