From fb1ea289e110b039e7f5d0fd24faf8c585437bf3 Mon Sep 17 00:00:00 2001 From: Alexei Znamensky Date: Sun, 22 Mar 2026 16:12:56 +1300 Subject: [PATCH] add missing quotes --- tests/integration/targets/python_runner/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/targets/python_runner/tasks/main.yml b/tests/integration/targets/python_runner/tasks/main.yml index d5e59f357c..88e7f049d9 100644 --- a/tests/integration/targets/python_runner/tasks/main.yml +++ b/tests/integration/targets/python_runner/tasks/main.yml @@ -32,7 +32,7 @@ ansible.builtin.command: cmd: >- {{ tmp_python_runner.path }}/venv/bin/django-admin startproject testproject - chdir: {{ tmp_python_runner.path }} + chdir: "{{ tmp_python_runner.path }}" - name: Run django_command check on the created project (issue 8884 scenario) community.general.django_command: