这个Genshi模板有什么问题:
<html xmlns:py="http://genshi.edgewall.org/">
<head>
<title py:content="title"></title>
</head>
<body>
<left>
<table py: for="i in range(1, len(ctabl))">
<li py: for="e in ctabl[i]">
${e}
</li>
</table>
</body>
</html>
我收到此错误:
genshi.template.base.TemplateSyntaxError:格式不正确(无效令牌):第7行第14列(templates / index2.html,第7行)
似乎表循环有问题......我不知道。
答案 0 :(得分:2)
我从未使用过Genshi,但他们的list of allowed processing directives在py
,:
和for
之间没有任何空格。尝试删除该空间。无论如何,第7行,第14列在冒号或空格上,取决于你是从0还是1算起,对吧?