Bugfix by Rob W. W. Hooft, from his spelling fixes patch. This one is a

genuine bug, so I checked it in separately.
This commit is contained in:
Thomas Wouters 2000-07-16 11:57:20 +00:00
parent 307d7a426f
commit c533e4a012
2 changed files with 2 additions and 2 deletions

View File

@ -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':

View File

@ -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':