diff --git a/content/en/tracing/guide/tutorial-enable-python-containers.md b/content/en/tracing/guide/tutorial-enable-python-containers.md
index 0412a1d10320d..b6c43b463947c 100644
--- a/content/en/tracing/guide/tutorial-enable-python-containers.md
+++ b/content/en/tracing/guide/tutorial-enable-python-containers.md
@@ -327,7 +327,7 @@ You can add custom instrumentation by using code. Suppose you want to further in
    ```python
    from ddtrace import tracer
    ```
-3. Inside the `try` block, at about line 28, add the following `with` statement:
+3. Inside the `try` block, at about line 41, add the following `with` statement:
 
    ```python
    with tracer.trace(name="notes_helper", service="notes_helper", resource="another_process") as span: