Closed dk850 closed 4 years ago
I believe I did this as part of debugging, and forgot to change it back. You can make a pull request, or I will update this for the next release cycle. Thanks!
If you update this, it is best to use #!/usr/bin/env python
[1]
[1] https://askubuntu.com/questions/716280/why-do-some-python-scripts-begin-with-usr-bin-env-python
Thanks for this issue, I can confirm it has been fixed in development
The hashbang at the top of the importBooks file is currently just
#!python
This doesn't play well with most linux systems as it expects a full path. Should be changed to something along the lines of
#!/usr/bin/python
so it looks like this and executes correctly.See: This stackoverflow question