In Python 3
Libraries
-- Python 3
- Python 3 does not require you to decode strings as this is done in the background.
## So for example if you had a piece of code;
## myHtmlField=myHtmlField+generalText1.decode('utf-8', 'ignore')+'
'
## This can now be changed to;
myHtmlField=myHtmlField+generalText1+'
'