aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mako/codegen.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-01-29 00:23:16 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-01-29 00:23:16 +0000
commit833ef69d6dfbd1202b615b20a6e0c6879dda23c4 (patch)
tree9cef836a6ddd9b58cfd1ffc9c349c801b88b0074 /lib/mako/codegen.py
parent7fce0b7e0d76a72b15e4385fec5bb3b8a2cbcfeb (diff)
downloadexternal_python_mako-833ef69d6dfbd1202b615b20a6e0c6879dda23c4.tar.gz
external_python_mako-833ef69d6dfbd1202b615b20a6e0c6879dda23c4.tar.bz2
external_python_mako-833ef69d6dfbd1202b615b20a6e0c6879dda23c4.zip
- support for CRLF templates...whoops ! welcome to all the windows users.
[ticket:16] - cleanup in unit tests
Diffstat (limited to 'lib/mako/codegen.py')
-rw-r--r--lib/mako/codegen.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/mako/codegen.py b/lib/mako/codegen.py
index a18dffc..d17ae64 100644
--- a/lib/mako/codegen.py
+++ b/lib/mako/codegen.py
@@ -357,7 +357,6 @@ class _GenerateRenderMethod(object):
self.printer.writeline("__%s = %s" % (name, name))
cachekey = node_or_pagetag.parsed_attributes.get('cache_key', repr(name))
cacheargs = {}
- print node_or_pagetag
for arg in (('cache_type', 'type'), ('cache_dir', 'data_dir'), ('cache_timeout', 'expiretime')):
val = node_or_pagetag.parsed_attributes.get(arg[0], None)
if val is not None: