Remove "group" identifier from get_index() entries; let the template figure that out.

This commit is contained in:
Georg Brandl
2010-02-20 14:21:03 +01:00
parent 044f61ddb1
commit ed6562960c
5 changed files with 44 additions and 18 deletions

View File

@@ -87,7 +87,8 @@ def test_latex(app):
stdout, stderr = p.communicate()
if p.returncode != 0:
print stdout
print stderr
del app.cleanup_trees[:]
assert False, 'latex exited with error'
assert False, 'latex exited with return code %s' % p.returncode
finally:
os.chdir(cwd)