1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
From: =?utf-8?b?RnLDqWTDqXJpYyBCb25uYXJk?= <frediz@debian.org>
Date: Thu, 5 Nov 2020 15:34:35 +0100
Subject: Fix python interpreter location
According to https://www.debian.org/doc/packaging-manuals/python-policy/ch-python.html#s-interpreter_loc
---
crop.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crop.py b/crop.py
index 1b8342f..41ce089 100755
--- a/crop.py
+++ b/crop.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/python3
# Copyright 2013-2016 SUSE LLC
# SPDX-License-Identifier: MIT
|