-
Notifications
You must be signed in to change notification settings - Fork 362
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
some movie titles exceed 128 character #36
Comments
Yes, for me too the program populate_moviegeek.py failed due to the long title "Lethal Kittens...." and I had to make the change that @MostafaNegim mentioned to fix the error. The actual error message in my Anaconda Prompt (on Windows) is:[15:44<00:08, 31.77it/s]Traceback (most recent call last): The above exception was the direct cause of the following exception: Traceback (most recent call last): Exception ignored in: <bound method tqdm.del of 99%|██████████████████████████████████████████████████████████████████████████████████████████▎| 36100/36384 [15:45<00:08, 31.77it/s]> |
Some movie titles have more than 128 character like this(140 character):
"Lethal Kittens or how we came to Love our Shovels during a Limited Anti-Terrorist Operation with Temporary Elements of a State of War (2020)".
Following line in moviegeeks.models.py should change to something more like 256.
title = models.CharField(max_length=128)
The text was updated successfully, but these errors were encountered: