From 9ecee5de559abaf072fd62efed4ab08d2f6e6750 Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Mon, 2 Dec 2024 20:08:12 +0100 Subject: [PATCH] setup.py: /usr/bin/env python3 python may not exist, or could be the python 2 interpreter. --- src/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/setup.py b/src/python/setup.py index 46f9a731..f500fcb0 100755 --- a/src/python/setup.py +++ b/src/python/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Enhanced Seccomp Library Python Module Build Script