From 641f0dc05c86e923fca902af35c5f8ec2506a4ad Mon Sep 17 00:00:00 2001 From: Christopher Date: Mon, 21 Dec 2015 11:54:06 -0600 Subject: [PATCH] Update module docstring. --- secretary.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/secretary.py b/secretary.py index efdadf3..abb6ae9 100644 --- a/secretary.py +++ b/secretary.py @@ -9,8 +9,8 @@ Secretary variable printing and control flow. To render a template: - engine = Renderer(template_file) - result = engine.render(template_var1=...) + engine = Renderer() + result = engine.render(template_file, foo=bar, ...) Copyright (c) 2012-2015 By: @@ -19,7 +19,7 @@ Secretary * Anton Kochnev (github.com/ak04nv) * DieterBuys (github.com/DieterBuys) - * Licensed under the MIT license. + Licensed under the MIT license. """ from __future__ import unicode_literals, print_function