diff --git a/kobo/hub/models.py b/kobo/hub/models.py index e7055bed..374ca873 100644 --- a/kobo/hub/models.py +++ b/kobo/hub/models.py @@ -606,9 +606,8 @@ def __str__(self): return u"#%s [method: %s, state: %s, worker: %s]" % (self.id, self.method, self.get_state_display(), self.worker) def save(self, *args, **kwargs): - # save to db to precalculate subtask counts and obtain an ID (on insert) for stdout and traceback - super(self.__class__, self).save() - self.subtask_count = self.subtasks().count() + if self.id is not None: + self.subtask_count = self.subtasks().count() super(self.__class__, self).save() self.logs.save() if self.parent: