Remove print in example
This commit is contained in:
parent
45779c6e3d
commit
e2ee303815
|
@ -2,9 +2,8 @@ import os
|
|||
from eorg.parser import parse
|
||||
from eorg.html import generate
|
||||
|
||||
doc=[]
|
||||
with open(os.path.abspath('../../tests/fixtures/test.org'), 'r') as fp:
|
||||
doc = []
|
||||
with open(os.path.abspath("../../tests/fixtures/test.org"), "r") as fp:
|
||||
doc = parse(fp)
|
||||
|
||||
print('#################')
|
||||
print(generate(doc).read())
|
||||
|
|
Loading…
Reference in New Issue