aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Vinciguerra <pvinci@vinciconsulting.com>2019-11-26 14:15:53 -0500
committerOle Trøan <otroan@employees.org>2019-11-27 08:35:05 +0000
commit99fbf0574f099f09b7b46dcabe5bb50d78091dce (patch)
tree63aec89b78e2d61c8a5314b2da93a58224ae502a /src
parent9efcee6e7babd49999af3e3dcd13ee33d0a4c02d (diff)
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>
Diffstat (limited to 'src')
-rw-r--r--src/vpp-api/python/vpp_papi/vpp_serializer.py2
1 files changed, 1 insertions, 1 deletions
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)