1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Phil Wyett <philip.wyett@kathenas.org>
Date: Mon, 24 Feb 2025 12:45:07 +0000
Subject: Use python3 not python.
Use python3 not python. Python 2 is deprecated and we do not have a 'python'
command by default.
Origin: vendor
Forwarded: not-needed
---
rednotebook/external/txt2tags.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rednotebook/external/txt2tags.py b/rednotebook/external/txt2tags.py
index 9b6fece..7410264 100644
--- a/rednotebook/external/txt2tags.py
+++ b/rednotebook/external/txt2tags.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# txt2tags - generic text conversion tool
# https://txt2tags.org/
# https://github.com/jendrikseipp/txt2tags
|