From 0c1c38917c8cddb550585c602a83beb5661e36e1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 3 Aug 2018 19:25:24 -0400 Subject: [PATCH] Make format explicit JSON Signed-off-by: Roberto Rosario --- mayan/apps/common/management/commands/convertdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/common/management/commands/convertdb.py b/mayan/apps/common/management/commands/convertdb.py index b2d4f19f6f..3086ce0e21 100644 --- a/mayan/apps/common/management/commands/convertdb.py +++ b/mayan/apps/common/management/commands/convertdb.py @@ -68,7 +68,7 @@ class Command(management.BaseCommand): 'dumpdata', all=True, database=options['from'], natural_primary=True, natural_foreign=True, output=convertdb_file_path, interactive=False, - indent=4, + format='json' ) if DocumentType.objects.using('default').count() and not options['force']: