Skip to content

Commit

Permalink
fix project topic creation
Browse files Browse the repository at this point in the history
  • Loading branch information
gllmp committed Oct 30, 2023
1 parent d1b8c62 commit d35eecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion organization/projects/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ def save(self, *args, **kwargs):
obj.topics.remove(self)
obj.topics.add(self.parent)
self.status = 0
super(ProjectTopic, self).save(args, kwargs)
super(ProjectTopic, self).save(*args, **kwargs)
if self.status == 0:
self.delete()

Expand Down

0 comments on commit d35eecd

Please sign in to comment.