-
Notifications
You must be signed in to change notification settings - Fork 58
Fixed collections warning #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No harm done.
$ vim
Error detected while processing function conque_gdb#load_python:
line 6:
/must>not&exist/foo:39: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
Press ENTER or type command to continue The errors being fixed do not appear in gVim. |
I made the same change that's made in this PR. However, I'm not receiving this error. $ git commit
hint: Waiting for your editor to close the file... Error detected while processing function conque_gdb#load_python:
line 6:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Users/pd028300/.vim/pack/vendor/start/conque-gdb/autoload/conque_gdb/conque_gdb.py", line 2, in <module>
import collections.abc
ImportError: No module named abc
Press ENTER or type command to continue
error: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option. |
Please copy from |
Since this works in gVim, but not in regular vim, I ended up doing this in my if has("gui_running")
autocmd BufEnter * :packadd conque-gdb
endif and placing the |
same errors here? |
ok.