diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-16 11:57:20 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-16 11:57:20 (GMT) |
commit | c533e4a01207f74b9c4f9a7414631a3c7b711595 (patch) | |
tree | eeadfe38ab94dba32c595aad5c0d1d0d77c8cb8c | |
parent | 307d7a426fee7433e48eb93498d4f250da739589 (diff) | |
download | cpython-c533e4a01207f74b9c4f9a7414631a3c7b711595.zip cpython-c533e4a01207f74b9c4f9a7414631a3c7b711595.tar.gz cpython-c533e4a01207f74b9c4f9a7414631a3c7b711595.tar.bz2 |
Bugfix by Rob W. W. Hooft, from his spelling fixes patch. This one is a
genuine bug, so I checked it in separately.
-rwxr-xr-x | Lib/plat-irix5/cdplayer.py | 2 | ||||
-rw-r--r-- | Lib/plat-irix6/cdplayer.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/plat-irix5/cdplayer.py b/Lib/plat-irix5/cdplayer.py index 0e27468..eeb56ce 100755 --- a/Lib/plat-irix5/cdplayer.py +++ b/Lib/plat-irix5/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': diff --git a/Lib/plat-irix6/cdplayer.py b/Lib/plat-irix6/cdplayer.py index 0e27468..eeb56ce 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': |