From b39a3d89366c6304d31dda845ff5cb834f01f981 Mon Sep 17 00:00:00 2001 From: James Arcus <jimbo@ucc.asn.au> Date: Mon, 12 Jun 2023 19:50:59 +0800 Subject: [PATCH] Request Python 2 runtime by explicit version --- dispense_add.py | 2 +- dispense_refund.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dispense_add.py b/dispense_add.py index 6832e7d..01f4e31 100755 --- a/dispense_add.py +++ b/dispense_add.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 import subprocess as sp diff --git a/dispense_refund.py b/dispense_refund.py index a07e938..aee4828 100755 --- a/dispense_refund.py +++ b/dispense_refund.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 import subprocess as sp sp.call(['tail', '-n5', "/home/other/coke/cokelog"]) -- GitLab