1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
From: Georges Khaznadar <georgesk@debian.org>
Date: Fri, 3 Oct 2025 23:28:13 +0200
Subject: python-version
===================================================================
---
bin/expEYES | 2 +-
bin/expeyes | 2 +-
bin/expeyes-junior-doc | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/bin/expEYES b/bin/expEYES
index 162a66b..9c245ad 100644
--- a/bin/expEYES
+++ b/bin/expEYES
@@ -1,3 +1,3 @@
#!/bin/sh
-exec python /usr/share/expeyes/explore.py
+exec python3 /usr/share/expeyes/explore.py
diff --git a/bin/expeyes b/bin/expeyes
index 2469cd6..0cbb134 100644
--- a/bin/expeyes
+++ b/bin/expeyes
@@ -1,3 +1,3 @@
#!/bin/sh
-exec python /usr/share/expeyes/eyes/explore.py
+exec python3 /usr/share/expeyes/eyes/explore.py
diff --git a/bin/expeyes-junior-doc b/bin/expeyes-junior-doc
index 2da7bb3..0ca636d 100644
--- a/bin/expeyes-junior-doc
+++ b/bin/expeyes-junior-doc
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#! /usr/bin/python3
import sys, os, os.path
from subprocess import call
|