summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorianb <devnull@localhost>2009-03-15 16:14:42 +0000
committerianb <devnull@localhost>2009-03-15 16:14:42 +0000
commit99a47ef5e060f0f06d13e5f8cfeb65bbc66b466c (patch)
tree6359981c468157bd809ddd1d94d542cc181d0b6c
parent495e8f6d6157f14cef0a6e2f84c3f2af9ac85a3b (diff)
downloadtempita-99a47ef5e060f0f06d13e5f8cfeb65bbc66b466c.tar.gz
fix looper test
-rw-r--r--tests/test_template.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_template.txt b/tests/test_template.txt
index ec2bd75..60c3afb 100644
--- a/tests/test_template.txt
+++ b/tests/test_template.txt
@@ -92,7 +92,7 @@ Also a couple handy functions;:
There's a handyish looper thing you can also use in your templates (or
in Python, but it's more useful in templates generally)::
- >>> from tempita.looper import looper
+ >>> from tempita import looper
>>> seq = ['apple', 'asparagus', 'Banana', 'orange']
>>> for loop, item in looper(seq):
... if item == 'apple':