大家好,我正在尝试启动我的Vim,所以我开始使用GitHub的插件,但是在安装了PyFlakes plugin之后,我得到了这个错误:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "<string>", line 82, in check
File "/usr/lib/pymodules/python2.7/pyflakes/checker.py", line 176, in __init__
self.handleChildren(tree)
File "/usr/lib/pymodules/python2.7/pyflakes/checker.py", line 267, in handleChildren
for node in tree.getChildNodes():
AttributeError: 'Module' object has no attribute 'getChildNodes'我使用PyFlakes作为我的点文件存储库中的一个子模块,所以我不能像插件的GitHub上的issue 27中建议的那样使用git clone --recursive。我的Vim 7.3支持Python编译。
有人能帮我吗?
发布于 2012-08-24 04:42:11
我使用这个命令来修复它:
git submodule update --recursive只需要知道如何更新子模块:)
https://stackoverflow.com/questions/12092172
复制相似问题