summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/guido/rmt.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-25 17:50:20 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-25 17:50:20 (GMT)
commit856023a098c60ba0d2bcfd01c5cd8ccff7db97b5 (patch)
treee2af1c1b988b218c1408fac9db4b3dc3465819ea /Demo/tkinter/guido/rmt.py
parent07e4f1565b8d922fe0df5cf3a15e113f7c562046 (diff)
downloadcpython-856023a098c60ba0d2bcfd01c5cd8ccff7db97b5.zip
cpython-856023a098c60ba0d2bcfd01c5cd8ccff7db97b5.tar.gz
cpython-856023a098c60ba0d2bcfd01c5cd8ccff7db97b5.tar.bz2
#3018: tkinter demo fixes for py3k.
Diffstat (limited to 'Demo/tkinter/guido/rmt.py')
-rwxr-xr-xDemo/tkinter/guido/rmt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/tkinter/guido/rmt.py b/Demo/tkinter/guido/rmt.py
index a3f430e..d11edb0 100755
--- a/Demo/tkinter/guido/rmt.py
+++ b/Demo/tkinter/guido/rmt.py
@@ -28,7 +28,7 @@ s = Scrollbar(f, relief=FLAT)
s.pack(side=RIGHT, fill=Y)
t = Text(f, relief=RAISED, borderwidth=2, yscrollcommand=s.set, setgrid=1)
t.pack(side=LEFT, fill=BOTH, expand=1)
-t.tag_config('bold', font='-Adobe-Courier-Bold-R-Normal-*-120-*')
+t.tag_config('bold')
s['command'] = t.yview
root.title('Tk Remote Controller')