From c533e4a01207f74b9c4f9a7414631a3c7b711595 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Sun, 16 Jul 2000 11:57:20 +0000 Subject: [PATCH] Bugfix by Rob W. W. Hooft, from his spelling fixes patch. This one is a genuine bug, so I checked it in separately. --- Lib/plat-irix5/cdplayer.py | 2 +- 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 0e27468451e..eeb56cefe91 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 0e27468451e..eeb56cefe91 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':