doc for the settings

This commit is contained in:
gwen
2012-11-19 16:48:47 +01:00
parent 86f9096937
commit e13fec23fe
4 changed files with 10 additions and 16 deletions

View File

@ -69,14 +69,13 @@ def process_modules():
pyf = splitext(basename(pyf))[0]
modname = 'tiramisu.' + pyf
if not '__init__' in modname:
parse_module(modname)
parse_module(modname)
pyfiles = glob(normpath(join(directory, '..', 'test', '*.py')))
for pyf in pyfiles:
pyf = splitext(basename(pyf))[0]
modname = 'test.' + pyf
if not '__init__' in modname:
parse_module(modname)
parse_module(modname)
process_modules()