Skip to content

Commit

Permalink
Make monitor.py use /usr/bin/env python3
Browse files Browse the repository at this point in the history
Previously it was set to `/usr/bin/python`, however on later versions
of Ubuntu and other OSes `/usr/bin/python` is missing. Users may install the
`python-is-python3` package but that is not ideal.
  • Loading branch information
nickva committed Mar 9, 2021
1 parent 50c1773 commit 1314c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion priv/monitor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

import os
import sys
Expand Down

0 comments on commit 1314c2a

Please sign in to comment.