# HG changeset patch # User dmcc # Date 2002-07-07 12:11:42 # Node ID 3cbe7110d8f73eff17f508c71eeb47d67825c284 # Parent 411de8b46aefc4bb7de06f6155e6cefed3a42de1 cleanup imports, fix backwards colors in changing level direction cleanup imports, fix backwards colors in changing level direction indicators diff --git a/light8/rsn.py b/light8/rsn.py --- a/light8/rsn.py +++ b/light8/rsn.py @@ -3,8 +3,8 @@ from __future__ import nested_scopes from Tkinter import * from time import sleep -from signal import * -import sys, thread, cPickle, math +from signal import signal, SIGINT +import sys, cPickle import io from uihelpers import * @@ -112,9 +112,9 @@ class Lightboard: lab.config(text="%d" % lev) colorlabel(lab) if lev < oldlev: - numlab['bg'] = 'red' + numlab['bg'] = 'blue' else: - numlab['bg'] = 'blue' + numlab['bg'] = 'red' else: numlab['bg'] = 'lightPink'