summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index fd80fcb2..416e6ef8 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1392,7 +1392,7 @@ www = env.Alias('www', webpages)
# Paste this list to a validator, e.g.
def validation_list(target, source, env):
- for page in webpages:
+ for page in glob.glob("www/*.html"):
with open(page) as fp:
if "Valid XHTML" in fp.read():
print os.path.join(website, os.path.basename(page))