Commit 68d81171 authored by Thomas Wouters's avatar Thomas Wouters

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

genuine bug, so I checked it in separately.
parent 15676ea4
...@@ -53,7 +53,7 @@ class Cdplayer: ...@@ -53,7 +53,7 @@ class Cdplayer:
if not match: if not match:
print 'syntax error in ~/' + cdplayerrc print 'syntax error in ~/' + cdplayerrc
continue continue
name, valye = match.group(1, 2) name, value = match.group(1, 2)
if name == 'title': if name == 'title':
self.title = value self.title = value
elif name == 'artist': elif name == 'artist':
......
...@@ -53,7 +53,7 @@ class Cdplayer: ...@@ -53,7 +53,7 @@ class Cdplayer:
if not match: if not match:
print 'syntax error in ~/' + cdplayerrc print 'syntax error in ~/' + cdplayerrc
continue continue
name, valye = match.group(1, 2) name, value = match.group(1, 2)
if name == 'title': if name == 'title':
self.title = value self.title = value
elif name == 'artist': elif name == 'artist':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment