Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Commit

Permalink
Remove this generator to work on Python 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
R. Tyler Ballance committed Oct 15, 2009
1 parent 3d67e89 commit 4c64fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cheetah/DummyTransaction.py
Expand Up @@ -58,7 +58,7 @@ def getvalue(self, outputChunks=None):
except UnicodeDecodeError, ex:
logging.debug('Trying to work around a UnicodeDecodeError in getvalue()')
logging.debug('...perhaps you could fix "%s" while you\'re debugging')
return ''.join((self.safeConvert(c) for c in chunks))
return ''.join([self.safeConvert(c) for c in chunks])

def writelines(self, *lines):
## not used
Expand Down

0 comments on commit 4c64fb2

Please sign in to comment.