Skip to content

Commit

Permalink
fix #1056
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Nov 1, 2021
1 parent f3e4323 commit 6bd3dfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ Version explained:

Version 4.2.17
* Feature: add flags ECE, CW and NS to TCP, (not sure if any flowspec implementation uses them) #1053
reported by: enag11
reported by: enag11
* Fix: bug with IGP Metric #1056
patch by: hkml2000

Version 4.2.16
* Fix: bacckport of fix for #1051 tcp-flag operators != and &!= return syntax error
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ def unpack(cls, data, length):
raise Notify(3, 5, "Incorrect IGP Metric Size")

def json(self, compact=None):
return '"igp-metric": %d' % int(self.igpmetric[0])
return '"igp-metric": %d' % int(self.igpmetric)

0 comments on commit 6bd3dfa

Please sign in to comment.