Skip to content

Commit

Permalink
changed magic line from python->python2
Browse files Browse the repository at this point in the history
Since python is sometimes (and for me on arch linux) a symlink to the
python3 utils, you should be more explicit with that.
  • Loading branch information
Marcel Hellwig committed Sep 17, 2015
1 parent 9efa140 commit e46e7b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion run
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
# coding=utf-8

from setuptools import setup, find_packages
Expand Down
3 changes: 2 additions & 1 deletion src/octoprint/__init__.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python2

import sys
from octoprint.daemon import Daemon
from octoprint.server import Server
Expand Down

0 comments on commit e46e7b3

Please sign in to comment.