mirror of
https://github.com/fergalmoran/picard.git
synced 2026-03-06 13:34:05 +00:00
Fix the cuesheet plugin.
This commit is contained in:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user