Bug - import/export now output JSON as individual objects
* For JSON as array, json.array=1 behaves as before * Tests and add-on scripts used in import tests were updated
This commit is contained in:
@@ -125,7 +125,7 @@ while (my $todo = <>)
|
||||
push @tasks, $json;
|
||||
}
|
||||
|
||||
print "[\n", join (",\n", @tasks), "\n]\n";
|
||||
print "[\n", join ("\n", @tasks), "\n]\n";
|
||||
exit 0;
|
||||
|
||||
################################################################################
|
||||
|
||||
@@ -117,7 +117,7 @@ while (my $yaml = <>)
|
||||
}
|
||||
}
|
||||
|
||||
print "[\n", join (",\n", @tasks), "\n]\n";
|
||||
print "[\n", join ("\n", @tasks), "\n]\n";
|
||||
exit 0;
|
||||
|
||||
################################################################################
|
||||
|
||||
Reference in New Issue
Block a user