How to fix TypeError: __init__() got an unexpected keyword argument 'verify_exists'
Problem:
TypeError: __init__() got an unexpected keyword argument 'verify_exists'
Solution :
Change this:
link = models.URLField(verify_exists=True, max_length=255, null=True, blank=True)
to this:
link = models.URLField(max_length=255, null=True, blank=True)
Recent Comments