Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Jun 2, 2022
1 parent 8259894 commit ac45e07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1903,9 +1903,9 @@ def add_portchannel(ctx, portchannel_name, min_links, fallback):
'mtu': '9100',
'lacp_key': 'auto'}
if min_links != 0:
fvs["min_links"] = str(min_links)
if fallback != "false":
fvs["fallback"] = "true"
fvs['min_links'] = str(min_links)
if fallback != 'false':
fvs['fallback'] = 'true'
validated_db.set_entry('PORTCHANNEL', portchannel_name, fvs)

@portchannel.command('del')
Expand Down

0 comments on commit ac45e07

Please sign in to comment.