File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -817,7 +817,7 @@ def export_all_data(self, export_dir_path):
817
817
for batch in export_func ().iterfetches (retry_on_rate_exceed = True ):
818
818
for item in batch :
819
819
items_exported += 1
820
- f .write (json .dumps (item .serialize ()))
820
+ f .write (json .dumps (item .serialize ()) + " \n " )
821
821
log .info (f"Done. Exported { items_exported } { endpoint } " )
822
822
823
823
# Now handle the special cases...
@@ -834,7 +834,7 @@ def export_all_data(self, export_dir_path):
834
834
log .info (f"Exporting { endpoint } , including those in archives, to { export_file_path } ..." )
835
835
items_exported = 0
836
836
for item in export_func ():
837
- f .write (json .dumps (item .serialize ()))
837
+ f .write (json .dumps (item .serialize ()) + " \n " )
838
838
items_exported += 1
839
839
log .info (f"Done. Exported { items_exported } { endpoint } " )
840
840
You can’t perform that action at this time.
0 commit comments