papi: fix typo in repr

Reported by Vratko's review.
(Thanks for the review)

Fixes: 14b0b4791c0b8c886e7b5c9ca667d060f0bada0b

Type: fix

Change-Id: I9c080c0c40060cc77977e76edae03d60eb393ce2
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:
Paul Vinciguerra
2019-11-26 14:15:53 -05:00
committed by Ole Trøan
parent 9efcee6e7b
commit 99fbf0574f

View File

@ -272,7 +272,7 @@ class FixedList(Packer):
return result, total
def __repr__(self):
return "FixedList_(name=%s, field_type=%s, num=%s)" % (
return "FixedList(name=%s, field_type=%s, num=%s)" % (
self.name, self.field_type, self.num)