Skip to content

Commit

Permalink
fix support for displaying open
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Jul 15, 2024
1 parent b52d41c commit c7c3afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exabgp/configuration/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def check_open(neighbor, raw):

def display_open(neighbor, raw):
try:
o = Open.unpack_message(raw, Direction.IN, _negotiated(neighbor))
o = Open.unpack_message(raw)
print(Response.JSON(json_version).open(neighbor, 'in', o, None, '', ''))
return True
except Exception:
Expand Down

0 comments on commit c7c3afe

Please sign in to comment.