-
Notifications
You must be signed in to change notification settings - Fork 194
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
[I solved it by changing your code] Error of TypeError: 'NoneType' object is not subscriptable #39
Comments
Adding this fix: Joeclinton1#39
I've added your fix: https://github.com/janvdp/google-images-download The PR to this branch is still open. Thanks! |
What a genius! Thanks |
Again the 'NoneType' object is not subscriptable ERROR. Traceback (most recent call last): |
Thanks a lot for this fix @mikelmh025 and @janvdp. This helped. Wondering why these fixes are not getting merged into the original repo. |
Under file google_images_download.py, class googleimagesdownload, function format_object line 405.
The original code is trying to get info from object from data[9] or data[11]. Looks like some changes made from google. You should use info = data[25] instead.
The text was updated successfully, but these errors were encountered: