Edgewall Software

Ticket #413: core-py3k.py.patch

File core-py3k.py.patch, 140 bytes (added by ilias@…, 13 years ago)

Ticket #413's patch for genshi/core.py in py3k

Line 
1725c725,726
2<         parts = qname.lstrip('{').split('}', 1)
3---
4>         qname = qname.lstrip('{')
5>         parts = qname.split('}', 1)