Skip to content

Commit 13e9ab0

Browse files
committed
Do not print error warning over pandoc
1 parent 597b76e commit 13e9ab0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
from pypandoc import convert
4343
read_md = lambda f: convert(f, 'rst')
4444
except ImportError:
45-
print('warning: pypandoc module not found, could not convert '
46-
'Markdown to RST')
45+
#print('warning: pypandoc module not found, could not convert '
46+
# 'Markdown to RST')
4747
read_md = lambda f: open(f, 'r').read()
4848

4949
CLASSIFIERS = [

0 commit comments

Comments
 (0)