From 1314c2ac70bb3f87ed6694a5d3751b26b9c885d4 Mon Sep 17 00:00:00 2001 From: Nick Vatamaniuc Date: Tue, 9 Mar 2021 16:58:00 -0500 Subject: [PATCH] Make monitor.py use /usr/bin/env python3 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. --- priv/monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/priv/monitor.py b/priv/monitor.py index 643ace9..e05f306 100755 --- a/priv/monitor.py +++ b/priv/monitor.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 import os import sys