Added more args to Profile model

This commit is contained in:
Rushil Umaretiya 2020-08-10 16:13:48 -04:00 committed by GitHub
parent 37d46902ee
commit 42fadf30a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,8 @@ class Profile(models.Model):
def __str__ (self):
return f"{self.user.username}'s Profile"
def save(self):
super().save()
def save(self, *args, **kwargs):
super().save(*args, **kwargs)
img = Image.open(self.profile_pic.path)