Explorar el Código

decoder error

chenjunkai hace 6 años
padre
commit
2e6c27a8e8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Controller/AppInfo.py

+ 1 - 1
Controller/AppInfo.py

@@ -217,6 +217,6 @@ class AppVersionView(View):
         qs = App_Info.objects.filter(appBundleId=appBundleId,app_type=app_type).values('content')
         ql = CommonService.qs_to_list(qs)
         for q in ql:
-            data.append(json.loads(q['content']))
+            data.append(json.loads(q['content'], strict=False))
         return render_to_response('appVerList.html', locals())