-
Notifications
You must be signed in to change notification settings - Fork 100
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
RetryError[<Future at 0x7fd49eb96ee0 state=finished raised TypeError>] #4
Comments
Thought i'm the only one that got this error. And: |
I have tried both steps but I am still getting same error Any help will be appreciated |
Yes please i have the same error at test.py. Any fix? Thanks |
Looking for the same fix for the above error. Generating outline for URL Slug organic-gardening @IncomeStreamSurfer any help is appreciated. Just a farmer trying to figure out blog coding. ;/ |
Same error here. I tried the above fixes, but they haven't worked either. |
hello, i still face this issue after trying this method above, could u give me some help? |
i have fixed that code, if any one intersted buying it, please msg me at [email protected] |
I face this error when was running the test.py.
After some troubleshooting i found the function (generate_featured_image) is expecting two parameters
def generate_featured_image(text, meta_title):
But only one is sent
featured_image = generate_featured_image( meta_title)
I make it work replacing the text with
url_slug
and adding that parameter to the calling functiondef generate_featured_image(url_slug, meta_title):
featured_image = generate_featured_image(url_slug, meta_title)
If you wanted i can do a PR to fix this issue.
The text was updated successfully, but these errors were encountered: