Upon loading a Python file in Vim, I get the following error:
Error detected while processing function pymode#breakpoint#init[29]..provider#python3#Call:
line 18:
Traceback (most recent call last):
File "<string>", line 2, in <module>
ModuleNotFoundError: No module named 'pymode.libs.six'
I'm using dein as my plugin manager.
Seems like it could be something to do with my vimrc - the debug one with the -i NONE flag works fine.
Try cleaning all pyc files withing python-mode directory.
I had a similar problem, I suspect the issue was that I updated the repo (i.e. git pull) without updating the submodules.
git submodule update --init --recursive
Most helpful comment
git submodule update --init --recursive