I installed „python-docstring-mode“ from melpa. The installed module was unable to locate „docstring_wrap.py“. I fixed this by rewriting the defvar for python-docstring-script:
(defvar python-docstring-script
(concat (file-name-directory (locate-library "python-docstring"))
"docstring_wrap.py")
"The location of the docstring_wrap.py script.")
I installed „
python-docstring-mode
“ from melpa. The installed module was unable to locate „docstring_wrap.py
“. I fixed this by rewriting thedefvar
forpython-docstring-script
: