I have this code:
name = urllib.unquote(d[1]).decode('utf8')
I use this name taken from form with Post method, to send an Email; As a result if name contains spaces they transdorm to pluses: For example:
Hello John+Smith
How to change pluses to space characters.