Simon Pickles wrote:
> Hi,
>
> This statement will not run due to the syntax error caused by the -.
>
> T.meta(http-equiv="refresh" content="600")
>
> Is there a workaround?
>
I had to pass a dictionary to the meta tag:
metaRefresh = { "http-equiv":"refresh", "content":"5"}
T.meta(**self.metaRefresh)
Thanks k4y!