summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@monkeypox.org>2009-10-15 11:49:27 -0700
committerR. Tyler Ballance <tyler@monkeypox.org>2009-10-15 11:49:27 -0700
commit4c64fb2b00fb1121a42e48bcb53bac5f09841ee3 (patch)
tree7450e7131d8ae7b8cb9b5712b2851e394be98c26
parent3d67e89fb967a393c47ce2f0b199a6e1f554b790 (diff)
downloadpython-cheetah-4c64fb2b00fb1121a42e48bcb53bac5f09841ee3.tar.gz
Remove this generator to work on Python 2.3
-rw-r--r--cheetah/DummyTransaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cheetah/DummyTransaction.py b/cheetah/DummyTransaction.py
index f84ade4..ddda861 100644
--- a/cheetah/DummyTransaction.py
+++ b/cheetah/DummyTransaction.py
@@ -58,7 +58,7 @@ class DummyResponse(object):
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