summaryrefslogtreecommitdiff
path: root/scripts/template.py
diff options
context:
space:
mode:
authorConrad Hoffmann <ch@bitfehler.net>2011-10-23 20:19:55 +0200
committerConrad Hoffmann <ch@bitfehler.net>2011-10-23 20:21:26 +0200
commit318c43a7664d11206e38eea901d802d25464fbb8 (patch)
tree40f304357360553419a8fc2fb8fb5c76a4e7841d /scripts/template.py
parent451889df8d9c423f2abe122f629d52e750f5cc14 (diff)
Fix error in template script verbose mode
Diffstat (limited to 'scripts/template.py')
-rwxr-xr-xscripts/template.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/template.py b/scripts/template.py
index c5d348a..2cfdf79 100755
--- a/scripts/template.py
+++ b/scripts/template.py
@@ -106,6 +106,6 @@ if __name__ == '__main__':
for page in os.listdir(pagepath):
Page(page).render_and_save()
if verbose:
- print "%s.html written" % prefix
+ print "%s.html written" % page
# vi: noexpandtab:tabstop=8:shiftwidth=8