Closed KrisKieft closed 3 years ago
Hi,
I want to point out a simple issue that I resolved. I am on a Linux machine running Ubuntu and the python script is interpreting "\n" characters as "\r" and causing issues. I resolved the issue by replacing the characters with sed.
sed -i 's/\r/\n/' viralrecall.py
Thanks for pointing that out. I haven't seen that before, and I generally use it on either Ubuntu or centOS.
Hi,
I want to point out a simple issue that I resolved. I am on a Linux machine running Ubuntu and the python script is interpreting "\n" characters as "\r" and causing issues. I resolved the issue by replacing the characters with sed.
sed -i 's/\r/\n/' viralrecall.py