Skip to content

Commit

Permalink
handle paren
Browse files Browse the repository at this point in the history
  • Loading branch information
cardoe committed Dec 18, 2024
1 parent dc6d279 commit fa94706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/neutron-understack/neutron_understack/cisco_asa.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _get_legacy_session():

def _cmd_str(cmds: list[str]) -> str:
"""Handles encoding of a list of commands to the URL string."""
encoded_cmds = [quote_plus(cmd, safe="(),") for cmd in cmds]
encoded_cmds = [quote_plus(cmd, safe=",") for cmd in cmds]
return "/".join(encoded_cmds)


Expand Down

0 comments on commit fa94706

Please sign in to comment.