summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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