typo in compileapp, issue 1149, thanks Corne

This commit is contained in:
mdipierro
2012-11-08 10:02:46 -06:00
parent c5ecf80b65
commit e11aa24b7d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.2.1 (2012-11-08 09:59:04) stable
Version 2.2.1 (2012-11-08 10:02:43) stable
+1 -1
View File
@@ -453,7 +453,7 @@ def compile_views(folder):
"""
path = pjoin(folder, 'views')
for file in listdir(path, '^[\w/\-]+(\.\w+)+$'):
for file in listdir(path, '^[\w/\-]+(\.\w+)*$'):
try:
data = parse_template(file, path)
except Exception, e: