This commit is contained in:
yumoqing 2020-06-08 15:02:57 +08:00
parent a942e4897c
commit 2292a077e2

View File

@ -72,7 +72,7 @@ class BaseProcessor:
self.content = json.dumps(self.content, self.content = json.dumps(self.content,
indent=4) indent=4)
elif isinstance(self.content,DictObject): elif isinstance(self.content,DictObject):
self.content = json.dumps(self.content._kwargs, self.content = json.dumps(self.content,
indent=4) indent=4)
elif type(self.content) == type([]): elif type(self.content) == type([]):
self.content = json.dumps(self.content, self.content = json.dumps(self.content,