diff options
author | luxagraf <sng@luxagraf.net> | 2018-04-01 10:18:32 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-04-01 10:18:32 -0500 |
commit | 2b522e791114e7af00e9d0083b3b36f4931b53ab (patch) | |
tree | dcf50a7d8184c8c591bf9e6da6e55ce91daba396 /app/photos/models.py | |
parent | 77f0a81785c15ffca51709160a90e805955c1522 (diff) |
added args kwargs to photo save methods
Diffstat (limited to 'app/photos/models.py')
-rw-r--r-- | app/photos/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/photos/models.py b/app/photos/models.py index eece991..a8feeec 100644 --- a/app/photos/models.py +++ b/app/photos/models.py @@ -170,7 +170,7 @@ class LuxImage(models.Model): else: return False - def save(self): + def save(self, *args, **kwargs): if not self.point: self.point = LuxImage.objects.latest().point try: |