check data folder on startup

This commit is contained in:
Nick Sweeting 2019-04-16 23:19:21 -04:00
parent fafdef1e6d
commit 6e5a77e1ad
3 changed files with 6 additions and 2 deletions

View file

@ -69,7 +69,7 @@ class ArchiveResult:
cols = cols or self.field_names()
return separator.join(
to_json(getattr(self, col), indent=False).ljust(ljust)
to_json(getattr(self, col), indent=None).ljust(ljust)
for col in cols
)