PyCQA / redbaron

Bottom-up approach to refactoring in python
http://redbaron.pycqa.org/
694 stars 74 forks source link

Use new method to avoid pypandoc warning #171

Closed felixonmars closed 6 years ago

felixonmars commented 6 years ago

This fixes the following deprecation warning:

setup.py:8: DeprecationWarning: Due to possible ambiguity, 'convert()' is deprecated. Use 'convert_file()'  or 'convert_text()'.
  read_md = lambda f: convert(f, 'rst')
Psycojoker commented 6 years ago

Thx!