Fix the cuesheet plugin.

This commit is contained in:
Lukáš Lalinský
2007-05-27 11:51:56 +02:00
parent d3d9160f86
commit 87f5f41090

View File

@@ -133,9 +133,8 @@ class Cuesheet(object):
elif line[0] != "FILE":
indent = 4
line2 = u" ".join([self.quote(s) for s in line])
lines.append(" " * indent + line2.encode("UTF-8") + "\r\n")
lines.append(" " * indent + line2.encode("UTF-8") + "\n")
f = open(encode_filename(self.filename), "wt")
print "".join(lines)
f.writelines(lines)
f.close()