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

@ -3,8 +3,7 @@ from eorg.parser import parse
from eorg.html import generate
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)
print('#################')
print(generate(doc).read())