|  | @@ -25,12 +25,12 @@ class json_export(export):
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          data = converter_factory.create(model).convert(model)
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -        return json.dumps(data, indent=4)
 | 
	
		
			
				|  |  | +        return json.dumps(data, indent=4) + ","
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      def postprocess(self, text):
 | 
	
		
			
				|  |  |          """Пост-обработка текста перед экспортом (по надобности)"""
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -        return f"{{\n    [{text}\n    ]\n}}"
 | 
	
		
			
				|  |  | +        return f'{{\n    "items": [{text[:-1]}\n    ]\n}}'
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @property
 | 
	
		
			
				|  |  |      def mimetype(self):
 |