diff --git a/src/smarttools/ui_urwid.py b/src/smarttools/ui_urwid.py index 3ef00c7..2a414b5 100644 --- a/src/smarttools/ui_urwid.py +++ b/src/smarttools/ui_urwid.py @@ -1836,10 +1836,7 @@ class SmartToolsUI: The code runs directly with variable substitution. Assign any "Available Variables" used to a new standard variable first, then use that variable in the code. Use triple quotes and curly braces since the substituted content may contain quotes/newlines. Example: -my_var = \"\"\"{{response}}\"\"\" -filename = \"\"\"{{outputfile}}\"\"\" -with open(filename, 'w') as f: - f.write(my_var) +my_var = \"\"\"{{variable}}\"\"\" INSTRUCTION: [Describe what you want]