X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/8ba1ce3bd12a74099c4287d2bafbabcc73c648b3..180cb43d814a4abe2811f29630ffffaaf9cfa9b7:/src/depot/models.py diff --git a/src/depot/models.py b/src/depot/models.py index 0f26a19f..62a360aa 100644 --- a/src/depot/models.py +++ b/src/depot/models.py @@ -169,14 +169,14 @@ class SiteBookPublish(models.Model): try: changes = [ p.change for p in - self.sitechunkpublish_set.order_by('change__chunk__number') + self.sitechunkpublish_set.order_by('change__tree__number') ] self.site_book.site.publish(self, changes=changes) - except Exception: + except Exception as e: self.status = 110 - self.error = traceback.format_exc() + self.error = str(e) + '\n\n' + traceback.format_exc() else: self.status = 100 self.error = ''