diff options
author | Georg Brandl <georg@python.org> | 2010-05-24 21:37:54 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-05-24 21:37:54 (GMT) |
commit | 574a857640191018341d59d8dd86661529fdbd58 (patch) | |
tree | 2dbe72bd11e73044dfa251a1c67d698026b5f997 /Demo | |
parent | 04ee3375fb403ce7ba554fb062e2c60e847d7ad4 (diff) | |
download | cpython-574a857640191018341d59d8dd86661529fdbd58.zip cpython-574a857640191018341d59d8dd86661529fdbd58.tar.gz cpython-574a857640191018341d59d8dd86661529fdbd58.tar.bz2 |
#8616: update module name
Diffstat (limited to 'Demo')
-rw-r--r-- | Demo/turtle/turtleDemo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/turtle/turtleDemo.py b/Demo/turtle/turtleDemo.py index 3030d91..30b5e5b 100644 --- a/Demo/turtle/turtleDemo.py +++ b/Demo/turtle/turtleDemo.py @@ -212,7 +212,7 @@ class DemoWindow(object): self.text.delete("1.0", "end") self.text.insert("1.0",chars) direc, fname = os.path.split(filename) - self.root.title(fname[6:-3]+" - an xturtle example") + self.root.title(fname[6:-3]+" - a Python turtle graphics example") self.module = __import__(fname[:-3]) reload(self.module) self.configGUI(NORMAL, NORMAL, DISABLED, DISABLED, |