@d path @{/path/to/the/directory/@}
@o code @{
filename = '@<path@>the_file'
@}
Running python3 -m pyweb test.w -wHTML
results in the following code
file:
filename = ' /path/to/the/directory/the_file'
The 12 space characters inside the string at the beginning appear because pyweb considers filename = '
a 12 character indentation.
What to change the above pyweb code the get rid of the spaces inside the string?