From af5ec66d499acf5253bf8dd7098f5bb533e90d9a Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Fri, 29 Aug 2008 00:27:04 +0000 Subject: [PATCH] return the project xml config file as text/plain so you can read it in your browser. --- htswfrontend/htswfrontend/analys_track/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htswfrontend/htswfrontend/analys_track/main.py b/htswfrontend/htswfrontend/analys_track/main.py index a625145..015a69c 100644 --- a/htswfrontend/htswfrontend/analys_track/main.py +++ b/htswfrontend/htswfrontend/analys_track/main.py @@ -88,4 +88,4 @@ def getProjects(request): except ObjectDoesNotExist: outputfile = "" - return HttpResponse(outputfile) + return HttpResponse(outputfile, mimetype='text/plain') -- 2.30.2