I'm playing with the pyflakes plugin for vim and now when I open a python file I get the error messages in the screenshot here

Any ideas how to fix this?

Thanks in advance...

link|improve this question

53% accept rate
feedback

3 Answers

https://github.com/kevinw/pyflakes-vim/issues/27

You can recommend to users that they clone the pyflakes-vim repo with git clone --recursive or you can suggest after the fact to use git submodule update --init --recursive if pyflakes-vim is saved as a git submodule itself.

Or go to pyflakes-vim and:

git submodule init && git submodule update

The point is that pyflakes-vim needs a (fresh) local copy of pyflakes under ftplugin/plugin/pyflakes if the system-wide installed version is too old.

link|improve this answer
feedback

Could be an issue with the version of Python you're running under vs. what the package you're using is looking for. A quick google for "Module getChildNodes python" got me to the page for Python compiler package which has one of those nice little "Deprecated" messages on it. So it might be that the pyflakes plugin is out of synch with the version of Python you have installed. "Python -V" will show you what version you're running.

C:\projects\fun>python -V
Python 2.7.1
link|improve this answer
feedback

This is a bug in pyflakes and we cannot help you with this here.

Try filing an issue on their git repository.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.