-
Hi all, I edited the submit.html to add our logo. It did work for some time but eventualy it 404ed. There is an error in pandora_error.log, which I am unable to c&p right now (vm) with a reference to virtualenv in ~/.cache/pypoetry about an illegal \t character while loading tokens in scanner.py . Is that related? TIA |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This is very hard to figure out what the problem might be without seeing the code you changed. If you want more help, please share a diff of your changes. You should put the logo in Note that |
Beta Was this translation helpful? Give feedback.
-
Ok, found it. If you learn to read, it helps... |
Beta Was this translation helpful? Give feedback.
Ok, found it. If you learn to read, it helps...
I changed the blocklist.yml to include more M$-Office malware and accidently inserted a line with a single TAB \t.
That caused the parsing in helpers.py to fail miserably, because /lib/python3.10/site-packages/yaml/scanner.py which does the actual parsing ,doesn't handle single tabs very well.
Well, the error is pretty clear: "found character '\t' that cannot start any token" it just took a long time, to find out in which file this \t was hidden.
Case closed. Thanx for your help!
Manu