mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 00:35:28 +02:00
fix lil syntax error (#10735)
This commit is contained in:
@@ -200,7 +200,7 @@ def _run_silent_except_error(cmd: list[str], message: str = None) -> subprocess.
|
||||
try:
|
||||
process = subprocess.run(cmd, check=True, universal_newlines=True, capture_output=True)
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f'Error running `{' '.join(cmd)}`')
|
||||
print(f'Error running `{" ".join(cmd)}`')
|
||||
if message is not None:
|
||||
print(message)
|
||||
print(e.output)
|
||||
|
||||
Reference in New Issue
Block a user