Skip to content

Commit

Permalink
Issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Savvas Radevic committed Jul 9, 2011
1 parent ca58916 commit 57a3f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playlist-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def make_xspf(self):
if not self.stations[sid].has_key('url'):
continue #skip
s += " <track>\n"
s += " <location>%s</location>\n" % self.stations[sid]['url']
s += " <location>%s</location>\n" % self.stations[sid]['url'].replace("&", "&amp;")
s += " <title>%s</title>\n" % self.stations[sid]['title']
s += " <annotation>%s</annotation>\n" % self.stations[sid]['city']
s += " <image>http://eradio.gr%s</image>\n" % self.stations[sid]['logo']
Expand Down

0 comments on commit 57a3f44

Please sign in to comment.