Skip to content

Commit

Permalink
Added words.txt
Browse files Browse the repository at this point in the history
Actually added a word file; the pull request I accepted was just code
to handle the word file.
  • Loading branch information
Carter Sande committed Sep 30, 2012
1 parent 608669c commit aad2917
Show file tree
Hide file tree
Showing 2 changed files with 1,343 additions and 1 deletion.
2 changes: 1 addition & 1 deletion TypingGame.py
Expand Up @@ -53,7 +53,7 @@ def updateSurface(self):
wordStr = random.choice(words)
word = TypingGameWord(wordStr)
except:
wordfile = open('TypingGameWords.txt', 'r')
wordfile = open('words.txt', 'r')
words = wordfile.readlines()
wordStr = random.choice(words).strip('\n')
word = TypingGameWord(wordStr)
Expand Down

0 comments on commit aad2917

Please sign in to comment.