diff options
Diffstat (limited to 'doc/build/testdocs.py')
| -rw-r--r-- | doc/build/testdocs.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/build/testdocs.py b/doc/build/testdocs.py index 2cef00956..15986c512 100644 --- a/doc/build/testdocs.py +++ b/doc/build/testdocs.py @@ -62,10 +62,11 @@ def replace_file(s, newfile): raise ValueError("Couldn't find suitable create_engine call to replace '%s' in it" % oldfile)
return s
-for filename in ('ormtutorial', 'adv_datamapping'):
+for filename in ('ormtutorial', 'sqlexpression'):
+#for filename in ('sqlexpression',):
filename = 'content/%s.txt' % filename
s = open(filename).read()
#s = replace_file(s, ':memory:')
- s = re.sub(r'{(?:stop|sql)}', '', s)
+ s = re.sub(r'{(?:stop|sql|opensql)}', '', s)
teststring(s, filename)
|
