diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-16 11:57:20 +0000 |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-16 11:57:20 +0000 |
commit | 68d8117162e83550ba7f5c949f6fbea19d1d3cc0 (patch) | |
tree | 32aa2402b8ec3e451b3ed5d0488ec0ac110f09dc /Lib/plat-irix6 | |
parent | 15676ea41a660179794c6173cd87026ed65279ea (diff) | |
download | cpython-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.py | 2 |
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': |