diff genshi/input.py @ 852:07f4339fecb0 trunk

Remove usage of unicode literals in a couple of places where they were not strictly necessary.
author cmlenz
date Tue, 10 Nov 2009 21:07:03 +0000
parents 52219748e5c1
children f33ecf3c319e
line wrap: on
line diff
--- a/genshi/input.py
+++ b/genshi/input.py
@@ -434,7 +434,7 @@
                 textpos = pos
         else:
             if textbuf:
-                yield TEXT, u''.join(textbuf), textpos
+                yield TEXT, ''.join(textbuf), textpos
                 del textbuf[:]
                 textpos = None
             if kind:
Copyright (C) 2012-2017 Edgewall Software