From 138cc4d83475649ace99e40131daba0a2ba4cde0 Mon Sep 17 00:00:00 2001 From: Ken Soh Date: Mon, 23 Nov 2020 22:32:32 +0800 Subject: [PATCH] #864 - docs typo missing ticks for echo variable --- docs/advanced.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/advanced.rst b/docs/advanced.rst index 32d900ee..1095d845 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -74,7 +74,7 @@ The ``py`` step can be used to run commands in Python (TagUI will call ``python` py b=2 py c=a+b py print(c) - echo py_result + echo `py_result` You can also use ``py begin`` and ``py finish`` before and after a Python code block:: @@ -84,14 +84,14 @@ You can also use ``py begin`` and ``py finish`` before and after a Python code b c=a+b print(c) py finish - echo py_result + echo `py_result` You can pass a variable to Python like this:: phone = 1234567 py 'phone = ' + phone py print(phone) - echo py_result + echo `py_result` Saving flow run results @@ -109,4 +109,4 @@ To do advanced debugging, you can create log files when running flows by creatin - ``my_flow.log`` stores output of the execution. - ``my_flow.js`` is the generated JavaScript file that was run. -- ``my_flow.raw`` is the expanded flow after parsing modules. \ No newline at end of file +- ``my_flow.raw`` is the expanded flow after parsing modules.