Skip to content

Commit

Permalink
T6058: Fix git commit archive
Browse files Browse the repository at this point in the history
Fix popen wrapper
  • Loading branch information
HollyGurza committed Feb 5, 2025
1 parent 24e37c5 commit 2324cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/vyos/utils/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def popen(command, flag='', shell=None, input=None, timeout=None, env=None,
)

wrapper = get_wrapper(vrf, netns, auth)
command = f'{wrapper} {command}'
command = f'{wrapper} {command}' if wrapper else command

cmd_msg = f"cmd '{command}'"
debug.message(cmd_msg, flag)
Expand Down

0 comments on commit 2324cc3

Please sign in to comment.