X-Git-Url: http://woldlab.caltech.edu/gitweb/?a=blobdiff_plain;f=htsworkflow%2Ffrontend%2Fexperiments%2Fexperiments.py;h=e9bb3151a23330b72f80c7773ab052795abec178;hb=5314f4335f53e1b36875c2ad0177fbb8623d3c64;hp=fef68ed130526e33400302db57de772d82b81ade;hpb=e1208e381eff73747a0a192efd5f910a50bc25aa;p=htsworkflow.git diff --git a/htsworkflow/frontend/experiments/experiments.py b/htsworkflow/frontend/experiments/experiments.py index fef68ed..e9bb315 100644 --- a/htsworkflow/frontend/experiments/experiments.py +++ b/htsworkflow/frontend/experiments/experiments.py @@ -93,7 +93,7 @@ def flowcell_json(request, fc_id): raise Http404 fc_json = json.dumps(fc_dict) - return HttpResponse(fc_json, mimetype = 'application/json') + return HttpResponse(fc_json, content_type = 'application/json') def lanes_for(username=None): """ @@ -135,7 +135,7 @@ def lanes_for_json(request, username): #convert query set to python structure result_json = json.dumps(result) - return HttpResponse(result_json, mimetype='application/json') + return HttpResponse(result_json, content_type='application/json') def updStatus(request): @@ -260,7 +260,7 @@ def getConfile(req): except ObjectDoesNotExist: cnfgfile = 'Entry not found for RunFolder = '+runfolder - return HttpResponse(cnfgfile, mimetype='text/plain') + return HttpResponse(cnfgfile, content_type='text/plain') def getLaneLibs(req): granted = False @@ -301,7 +301,7 @@ def getLaneLibs(req): outputfile = 'Flowcell entry not found for: '+fcid else: outputfile = 'Missing input: flowcell id' - return HttpResponse(outputfile, mimetype='text/plain') + return HttpResponse(outputfile, content_type='text/plain') def estimateFlowcellDuration(flowcell): """