|
@@ -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())
|
|
|
|