From: Paul Vinciguerra Date: Tue, 26 Nov 2019 19:15:53 +0000 (-0500) Subject: papi: fix typo in repr X-Git-Tag: v20.05-rc0~303 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=99fbf0574f099f09b7b46dcabe5bb50d78091dce 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 --- diff --git a/src/vpp-api/python/vpp_papi/vpp_serializer.py b/src/vpp-api/python/vpp_papi/vpp_serializer.py index b0be8c81e69..09294875305 100644 --- a/src/vpp-api/python/vpp_papi/vpp_serializer.py +++ b/src/vpp-api/python/vpp_papi/vpp_serializer.py @@ -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)