Skip to content

Commit

Permalink
#864 - docs typo missing ticks for echo variable
Browse files Browse the repository at this point in the history
  • Loading branch information
kensoh authored Nov 23, 2020
1 parent 0e04132 commit 138cc4d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::

Expand All @@ -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
Expand All @@ -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.
- ``my_flow.raw`` is the expanded flow after parsing modules.

0 comments on commit 138cc4d

Please sign in to comment.