Fix typo so that "./dotest.py --results-formatter=curses_results.Curses --results-file=/dev/stdout" works again.

llvm-svn: 250952
This commit is contained in:
Greg Clayton 2015-10-21 21:55:16 +00:00
parent 6005fcbe12
commit 258c164bf7
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ class Window(object):
n is the number of times to go through the event loop before exiting'''
done = False
while not done and n > 0:
c = self.get_key(timeoue_msec)
c = self.get_key(timeout_msec)
if c != -1:
try:
self.handle_key(c)