Skip to content

Commit e5a9122

Browse files
author
nnorwitz
committed
SF #517447, correct syntax error
git-svn-id: http://svn.python.org/projects/python/trunk@25464 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 7e036a6 commit e5a9122

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Demo/tix/tixwidgets.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,7 @@ def loop(self):
135135
import tkMessageBox, traceback
136136
while self.exit < 0:
137137
try:
138-
while self.exit < 0:
139-
self.root.tk.dooneevent(TCL_ALL_EVENTS)
138+
self.root.tk.dooneevent(TCL_ALL_EVENTS)
140139
except SystemExit:
141140
#print 'Exit'
142141
self.exit = 1

0 commit comments

Comments
 (0)