updating pymode repository error: server does not allow request

1k Views Asked by At

I run the following command:

 git submodule update --init --recursive

I got

error: Server does not allow request for unadvertised object 837ecd3d7a8597ab5f28bc83072de68e16470f1e
Fetched in submodule path 'submodules/pylama', but it did not contain 837ecd3d7a8597ab5f28bc83072de68e16470f1e. Direct fetching of that commit failed.
2

There are 2 best solutions below

0
sunxd On BEST ANSWER

i sovled the problem by deleting the old pymode and reinstall that.

3
Alexey Chernyshov On

Go to the plugin folder (for me it is ~/.vim/bundle/python-mode), then go to the problem plugin folder and sync the submodules (between git config and .gitmodules):

cd submodules/pylama
git submodule sync

After this you should be able to update python mode as usual.