summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2019-02-16 15:11:48 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2019-02-16 15:11:48 +0000
commit0f18c156eea48f2ada03c4c777e97c289bfe3fd3 (patch)
treec029cf195e43e09b5705cfadfccda5e11023b458
parentfd3f5f2d3fa3140ce066e116799de89907010a5e (diff)
downloadnetsurf-test-0f18c156eea48f2ada03c4c777e97c289bfe3fd3.tar.gz
netsurf-test-0f18c156eea48f2ada03c4c777e97c289bfe3fd3.tar.bz2
monkey-index.cgi: Change mime type to text/plain.
-rwxr-xr-xcgi-bin/monkey-index.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi-bin/monkey-index.cgi b/cgi-bin/monkey-index.cgi
index e9ce008..88804d1 100755
--- a/cgi-bin/monkey-index.cgi
+++ b/cgi-bin/monkey-index.cgi
@@ -20,7 +20,7 @@ for fname in os.listdir(testroot):
with open(os.path.join(testroot, fname), "r") as fh:
files[fname] = yaml.load(fh)
-print('Content-Type: application/yaml')
+print('Content-Type: text/plain')
print('')
for group in files["index.yaml"]: