Skip to content
Snippets Groups Projects
Commit 072502fd authored by Hervé  MENAGER's avatar Hervé MENAGER
Browse files

syntax correction

Former-commit-id: ea9d393c173328aebfc050cb85a5ebb783decbd8
parent 28daf769
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ class AutoFillableModel(models.Model): ...@@ -20,7 +20,7 @@ class AutoFillableModel(models.Model):
self.autofill() self.autofill()
if 'autofill' in kwargs: if 'autofill' in kwargs:
del kwargs['autofill'] del kwargs['autofill']
super(AutoFillableModel, self).save(*args, *kwargs) super(AutoFillableModel, self).save(*args, **kwargs)
class Bibliography(AutoFillableModel): class Bibliography(AutoFillableModel):
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment