pybraincompare icon indicating copy to clipboard operation
pybraincompare copied to clipboard

ValueError: unsupported format character '<' (0x3c) at index 3

Open qawithrahul opened this issue 9 years ago • 2 comments

Hi i am getting error on running code . can you please help

HTML_BODY= """

S.No. Scenario Name Total Test Cases Passed Test Cases Failed Test Cases
1 %s% %s% %s% %s%

 

Total Scenario Total Test Cases Passed Test Cases Failed Test Cases
%s% %s% %s% %s%

 

""" %(self.__flow,self.__totalflowtestcases,self.__flowtestpass,self.__flowtestfail,self.__alltestcases,self.__alltestcases,self.__testpass,self.__testfail)

qawithrahul avatar Feb 09 '16 11:02 qawithrahul

Could you please give more detail about the command you are running? I can't make sense of what you'e pasted into the window.

vsoch avatar Feb 09 '16 18:02 vsoch

Generally an unsupported format character means that the input that you are putting into (some function) needs to be read as a different encoding, typically the default is ascii and you might try utf-8.

vsoch avatar Feb 09 '16 18:02 vsoch