Code Review
/
vpp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
9efcee6
)
papi: fix typo in repr
44/23644/3
author
Paul Vinciguerra
<
[email protected]
>
Tue, 26 Nov 2019 19:15:53 +0000
(14:15 -0500)
committer
Ole Trøan
<
[email protected]
>
Wed, 27 Nov 2019 08:35:05 +0000
(08:35 +0000)
Reported by Vratko's review.
(Thanks for the review)
Fixes:
14b0b4791c0b8c886e7b5c9ca667d060f0bada0b
Type: fix
Change-Id: I9c080c0c40060cc77977e76edae03d60eb393ce2
Signed-off-by: Paul Vinciguerra <
[email protected]
>
src/vpp-api/python/vpp_papi/vpp_serializer.py
patch
|
blob
|
history
diff --git
a/src/vpp-api/python/vpp_papi/vpp_serializer.py
b/src/vpp-api/python/vpp_papi/vpp_serializer.py
index
b0be8c8
..
0929487
100644
(file)
--- 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)