﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
270,Line break missing after each element in py:for loop,catherine.devlin@…,cmlenz,"When for-looping on an element, Genshi is omitting the line break after each closing tag.  For example, from the example at
http://genshi.edgewall.org/wiki/Documentation/templates.html

    <ul>
      <li py:for=""fruit in fruits"">
        I like ${fruit}s
      </li>
    </ul>

is producing

    <ul>
      <li>
        I like apples
      </li><li>
        I like oranges
      </li><li>
        I like kiwis
      </li>
    </ul>

It's functional, but ugly.  To match the template's appearance, it should produce

    <ul>
      <li>
        I like apples
      </li>
      <li>
        I like oranges
      </li>
      <li>
        I like kiwis
      </li>
    </ul>

This applies to the development version, 0.5, 0.5.1, and maybe older.

Could be related to http://genshi.edgewall.org/ticket/110 - not sure.  

I'll attach a file with two failing doctests.",defect,new,major,0.9,General,0.5.1,,,
