I have this python script that moves torrent files after download. For some reason its not run upon completion of torrent. I'm running transmission 2.51.
The script runs fine in terminal. Its quite long so I'm not posting it.
Okay, I hope this helps someone. After a lot of log searching and script debugging. I found out that the python interpreter was not being launched because the line of code in the script used to launch python had spaces in it
# !/usr/bin/env python
It should have been:
#!/usr/bin/env python
Lesson: CHECK YOUR SCRIPT!