Skip to content

Commit

Permalink
Merge pull request #25 from Fenixin/small-fix
Browse files Browse the repository at this point in the history
Fix missing asterisk.
  • Loading branch information
twoolie committed Mar 7, 2012
2 parents ae8efc4 + e0d20cb commit 47a1ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbt/nbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _render_buffer(self, buffer):
length = len(self.value)
self.update_fmt(length)
TAG_Int(length)._render_buffer(buffer)
buffer.write(pack(self.fmt, self.value))
buffer.write(pack(self.fmt, *self.value))

#Printing and Formatting of tree
def __repr__(self):
Expand Down

0 comments on commit 47a1ca5

Please sign in to comment.