Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/typingturtle.py
diff options
context:
space:
mode:
authorWade Brainerd <wadetb@gmail.com>2009-10-28 00:24:36 (GMT)
committer Wade Brainerd <wadetb@gmail.com>2009-10-28 00:24:36 (GMT)
commitb3248de32a24584ed2e62a840760a4c85fdf5380 (patch)
tree55acffc286bc72d82142a981a4f03dc4f9182b74 /typingturtle.py
parent1ef3f5a643e992f9a24b2d6ad74a5f8dc5f6664e (diff)
Ability to use a custom word list with the lesson generator.
Diffstat (limited to 'typingturtle.py')
-rwxr-xr-xtypingturtle.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/typingturtle.py b/typingturtle.py
index dfe4ccb..1cf9231 100755
--- a/typingturtle.py
+++ b/typingturtle.py
@@ -13,7 +13,7 @@
#
# You should have received a copy of the GNU General Public License
# along with Typing Turtle. If not, see <http://www.gnu.org/licenses/>.
-"""Typing Turtle - Interactive typing tutor for the OLPC XO."""
+"""Typing Turtle - Interactive typing tutor for Sugar."""
# Import standard Python modules.
import logging, os, math, time, copy, locale, datetime, random, re
@@ -66,6 +66,8 @@ class TypingTurtle(sugar.activity.activity.Activity):
self.owner = presenceservice.get_instance().get_owner()
+ self.wordlist = []
+
# All data which is saved in the Journal entry is placed in this dictionary.
self.data = {
'motd': 'welcome',