|
@@ -23,7 +23,7 @@ class json_export(export):
|
|
|
model (abstract_reference): модель, строку с которой нужно создать
|
|
|
"""
|
|
|
|
|
|
- data = converter_factory.create(model).convert(model)
|
|
|
+ data = converter_factory.convert(model)
|
|
|
|
|
|
return json.dumps(data, indent=4) + ","
|
|
|
|