We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b90afc8 commit 0aea5edCopy full SHA for 0aea5ed
archivebox/core/migrations/0007_archiveresult.py
@@ -37,7 +37,7 @@ def forwards_func(apps, schema_editor):
37
for extractor in history:
38
for result in history[extractor]:
39
ArchiveResult.objects.create(extractor=extractor, snapshot=snapshot, cmd=result["cmd"], cmd_version=result["cmd_version"] or 'unknown',
40
- start_ts=result["start_ts"], end_ts=result["end_ts"], status=result["status"], pwd=result["pwd"], output=result["output"])
+ start_ts=result["start_ts"], end_ts=result["end_ts"], status=result["status"], pwd=result["pwd"], output=result["output"] or 'null')
41
42
43
def verify_json_index_integrity(snapshot):
0 commit comments