Skip to content

Commit 5a9e5a8

Browse files
committed
Correción orden de código
1 parent d0b6597 commit 5a9e5a8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

fabricator/recipes.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,9 @@ def restart_services(
390390
f"Skipping Gunicorn restart."
391391
)
392392
else:
393-
gunicorn_script_exists = check_gunicorn_script.stdout.strip() == "exists"
393+
gunicorn_script_exists = (
394+
check_gunicorn_script.stdout.strip() == "exists"
395+
)
394396

395397
if not gunicorn_script_exists:
396398
logger.warning(

0 commit comments

Comments
 (0)