Remove print in example

This commit is contained in:
Oliver Marks 2018-10-17 22:15:59 +01:00
parent 45779c6e3d
commit e2ee303815
1 changed files with 3 additions and 4 deletions

View File

@ -2,9 +2,8 @@ import os
from eorg.parser import parse from eorg.parser import parse
from eorg.html import generate from eorg.html import generate
doc=[] doc = []
with open(os.path.abspath('../../tests/fixtures/test.org'), 'r') as fp: with open(os.path.abspath("../../tests/fixtures/test.org"), "r") as fp:
doc = parse(fp) doc = parse(fp)
print('#################')
print(generate(doc).read()) print(generate(doc).read())