CVE-2021-3129 icon indicating copy to clipboard operation
CVE-2021-3129 copied to clipboard

ValueError: substring not found

Open investlab opened this issue 2 years ago • 1 comments

I get an error telling: ValueError: substring not found how can i fix this error? Screenshot_2

investlab avatar Nov 16 '22 09:11 investlab

replace string at line 96 text = text[text.index(']'):].replace("}","").replace("]","") to this construction text = text[text.index(']'):].replace("}","").replace("]","") if text.find(']') != -1 else text

MonsterRoot avatar Dec 28 '22 04:12 MonsterRoot