Edgewall Software

Changeset 1075 for trunk/genshi/input.py


Ignore:
Timestamp:
Nov 10, 2009, 10:07:03 PM (14 years ago)
Author:
cmlenz
Message:

Remove usage of unicode literals in a couple of places where they were not strictly necessary.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/genshi/input.py

    r876 r1075  
    435435        else:
    436436            if textbuf:
    437                 yield TEXT, u''.join(textbuf), textpos
     437                yield TEXT, ''.join(textbuf), textpos
    438438                del textbuf[:]
    439439                textpos = None
Note: See TracChangeset for help on using the changeset viewer.