Skip to content

Commit

Permalink
Forms: Honor super class params
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Jun 30, 2020
1 parent a36ba0c commit 011d0d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions weblate/trans/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -1653,8 +1653,8 @@ def clean(self):
}
)

def save(self):
super().save()
def save(self, commit: bool = True):
super().save(commit=commit)
if self.changed_access:
Change.objects.create(
project=self.instance,
Expand Down

0 comments on commit 011d0d9

Please sign in to comment.