diff --git a/plugins/cuesheet.py b/plugins/cuesheet.py index 27502ca94..36f33bb41 100644 --- a/plugins/cuesheet.py +++ b/plugins/cuesheet.py @@ -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()