diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-12 16:05:47 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-12 16:05:47 -0500 |
commit | 4ce916525fd94116e696f4d8cde19333e9ed946c (patch) | |
tree | 1ac15a03c68d6b401278c4b4d601835cf5fa8b7a /mako/template.py | |
parent | d0f607201ebbbeecc60880455aacb690906563bd (diff) | |
download | external_python_mako-4ce916525fd94116e696f4d8cde19333e9ed946c.tar.gz external_python_mako-4ce916525fd94116e696f4d8cde19333e9ed946c.tar.bz2 external_python_mako-4ce916525fd94116e696f4d8cde19333e9ed946c.zip |
moving along
Diffstat (limited to 'mako/template.py')
-rw-r--r-- | mako/template.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mako/template.py b/mako/template.py index e78afcd..9a6c6c2 100644 --- a/mako/template.py +++ b/mako/template.py @@ -270,7 +270,7 @@ class Template(object): return hasattr(self.module, "render_%s" % name) def get_def(self, name): - """Return a def of this template as a DefTemplate.""" + """Return a def of this template as a :class:`.DefTemplate`.""" return DefTemplate(self, getattr(self.module, "render_%s" % name)) |