./docutils/writers/manpage.py:51:13: F821 undefined name 'xrange'
Did you read the code? It is a code only available under python2. And docutils has still supported it.
if sys.version_info < (3, 0): range = xrange
What are you expected?
To add # noqa: F821
# noqa: F821
Thanks! Here is a patch to fix it :-)
thanks :)
Log in to post a comment.
Did you read the code? It is a code only available under python2. And docutils has still supported it.
What are you expected?
What are you expected?
To add
# noqa: F821Thanks! Here is a patch to fix it :-)
thanks :)