Skip to content

Commit

Permalink
python3 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Higgins committed Oct 21, 2015
1 parent e2dc44a commit 3b1ccfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mutagen/mp4/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def __render_freeform(self, key, value):

data += struct.pack(
">I4s2I", len(v) + 16, b"data", version << 24 | flags, 0)
data += v
data += v.encode('UTF-8')

return Atom.render(b"----", mean + name + data)

Expand Down

0 comments on commit 3b1ccfa

Please sign in to comment.