changed magic line from python->python2
Since python is sometimes (and for me on arch linux) a symlink to the python3 utils, you should be more explicit with that.
This commit is contained in:
parent
9efa14058d
commit
e46e7b3ee2
3 changed files with 4 additions and 3 deletions
2
run
2
run
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python2
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python2
|
||||||
# coding=utf-8
|
# coding=utf-8
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python2
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from octoprint.daemon import Daemon
|
from octoprint.daemon import Daemon
|
||||||
from octoprint.server import Server
|
from octoprint.server import Server
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue