From 6da09f113de019824e094dc647babd8d9fbb6caa Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Fri, 12 Dec 2014 15:35:15 +0100
Subject: [PATCH] use python3 explicitly for the cursor tool.

---
 utils/make_cursor_gui.py | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/utils/make_cursor_gui.py b/utils/make_cursor_gui.py
index 23fef6a..523a186 100755
--- a/utils/make_cursor_gui.py
+++ b/utils/make_cursor_gui.py
@@ -1,9 +1,21 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 
 # Created by Robert Wenzlaff (Det. Thorn).
 # Oct. 30, 2003
 
-from tkinter import *
+from tkinter import (
+        Button,
+        Canvas,
+        Checkbutton,
+        END,
+        Frame,
+        IntVar,
+        Label,
+        RIDGE,
+        Text,
+        Tk,
+        )
+
 color = ("black", "white", "darkgreen", "gray")
 
 
-- 
GitLab