Package: auto-07p / 0.9.2+dfsg-3

05_python3.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Description: Minor fixes for python3
Author: Sergey B Kirpichev <skirpichev@gmail.com>

---
 07p/bin/auto                           |    1 -
 07p/python/auto/interactiveBindings.py |    2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

--- a/07p/python/auto/interactiveBindings.py
+++ b/07p/python/auto/interactiveBindings.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
 
 import sys
 import os
--- a/07p/bin/auto
+++ b/07p/bin/auto
@@ -21,5 +21,4 @@ if test "$OS" = "Windows_NT" && test "$M
   fi
 fi
 
-command -v > /dev/null python && exec python "$AUTO_DIR/python/auto/interactiveBindings.py" ${1+"$@"};
 exec python3 "$AUTO_DIR/python/auto/interactiveBindings.py" ${1+"$@"};