Basic verification of Comment export & exporter comment tuple fix

From oprhaned commits b1855a4b7a
53f21574fd

Co-Authored-By: Trenton Holmes <797416+stumpylog@users.noreply.github.com>
This commit is contained in:
Michael Shamoon
2022-08-23 22:04:27 -07:00
parent fc34b85b6e
commit 680055474e
2 changed files with 18 additions and 5 deletions

View File

@@ -127,10 +127,8 @@ class Command(BaseCommand):
serializers.serialize("json", DocumentType.objects.all()),
)
manifest += (
json.loads(
serializers.serialize("json", Comment.objects.all()),
),
manifest += json.loads(
serializers.serialize("json", Comment.objects.all()),
)
documents = Document.objects.order_by("id")