Update module docstring.

This commit is contained in:
Christopher 2015-12-21 11:54:06 -06:00
parent 6035736c32
commit 641f0dc05c

View file

@ -9,8 +9,8 @@ Secretary
variable printing and control flow. variable printing and control flow.
To render a template: To render a template:
engine = Renderer(template_file) engine = Renderer()
result = engine.render(template_var1=...) result = engine.render(template_file, foo=bar, ...)
Copyright (c) 2012-2015 By: Copyright (c) 2012-2015 By:
@ -19,7 +19,7 @@ Secretary
* Anton Kochnev (github.com/ak04nv) * Anton Kochnev (github.com/ak04nv)
* DieterBuys (github.com/DieterBuys) * DieterBuys (github.com/DieterBuys)
* Licensed under the MIT license. Licensed under the MIT license.
""" """
from __future__ import unicode_literals, print_function from __future__ import unicode_literals, print_function