You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that none of the values going into the XML are getting encoding. Having anything with an ampersand e.g. leads to verification failure. Example:
licence_data += u"\t" + signature + u"\n"
Python 2.0+ has XML encoding built in, so 'escape(signature)' would be the solution.
The text was updated successfully, but these errors were encountered:
It seems that none of the values going into the XML are getting encoding. Having anything with an ampersand e.g. leads to verification failure. Example:
licence_data += u"\t" + signature + u"\n"
Python 2.0+ has XML encoding built in, so 'escape(signature)' would be the solution.
The text was updated successfully, but these errors were encountered: