summaryrefslogtreecommitdiffstats
path: root/Tools/pynche/pyColorChooser.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/pynche/pyColorChooser.py')
-rw-r--r--Tools/pynche/pyColorChooser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/pynche/pyColorChooser.py b/Tools/pynche/pyColorChooser.py
index 788ad5a..1a920c3 100644
--- a/Tools/pynche/pyColorChooser.py
+++ b/Tools/pynche/pyColorChooser.py
@@ -90,9 +90,10 @@ def save():
# test stuff
if __name__ == '__main__':
+ from Tkinter import *
+
class Tester:
def __init__(self):
- from Tkinter import *
self.__root = tk = Tk()
b = Button(tk, text='Choose Color...', command=self.__choose)
b.pack()