summaryrefslogtreecommitdiff
path: root/Lib/plat-irix6
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-16 11:57:20 +0000
committerThomas Wouters <thomas@python.org>2000-07-16 11:57:20 +0000
commit68d8117162e83550ba7f5c949f6fbea19d1d3cc0 (patch)
tree32aa2402b8ec3e451b3ed5d0488ec0ac110f09dc /Lib/plat-irix6
parent15676ea41a660179794c6173cd87026ed65279ea (diff)
downloadcpython-68d8117162e83550ba7f5c949f6fbea19d1d3cc0.tar.gz
Bugfix by Rob W. W. Hooft, from his spelling fixes patch. This one is a
genuine bug, so I checked it in separately.
Diffstat (limited to 'Lib/plat-irix6')
-rw-r--r--Lib/plat-irix6/cdplayer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-irix6/cdplayer.py b/Lib/plat-irix6/cdplayer.py
index 0e27468451..eeb56cefe9 100644
--- a/Lib/plat-irix6/cdplayer.py
+++ b/Lib/plat-irix6/cdplayer.py
@@ -53,7 +53,7 @@ class Cdplayer:
if not match:
print 'syntax error in ~/' + cdplayerrc
continue
- name, valye = match.group(1, 2)
+ name, value = match.group(1, 2)
if name == 'title':
self.title = value
elif name == 'artist':