Posted June 17, 2020
raphick: For those who still have issues like "Plugin crashed" or "Offline retry" do this :
- In addition to totally REPLACING the line 64, delete lines 65 and 66
- Python is indent-sensitive, it means the script interpreter uses the vertical alignment to know if blocks of code are within certain statements/conditionals/loops or others. To make sure that the script is correctly interpreted you need to make sure that the line 64 you have just replaced starts with the "s" of stored_npsso right under the "c" of async which is in line 63. Actually it, the line 64 has to start after 8 blank SPACES (do not use tabs).
In the end it should look like the image attached.
Cheers!
This worked for me, thank you so much!- In addition to totally REPLACING the line 64, delete lines 65 and 66
- Python is indent-sensitive, it means the script interpreter uses the vertical alignment to know if blocks of code are within certain statements/conditionals/loops or others. To make sure that the script is correctly interpreted you need to make sure that the line 64 you have just replaced starts with the "s" of stored_npsso right under the "c" of async which is in line 63. Actually it, the line 64 has to start after 8 blank SPACES (do not use tabs).
In the end it should look like the image attached.
Cheers!