morss: improved output type

master
pictuga 2018-09-30 22:02:29 +02:00
parent 2ccf36617a
commit e72ca3f984
1 changed files with 2 additions and 2 deletions

View File

@ -532,7 +532,7 @@ def cgi_app(environ, start_response):
if options.html or options.reader:
headers['content-type'] = 'text/html'
elif options.txt:
elif options.txt or options.silent:
headers['content-type'] = 'text/plain'
elif options.json:
headers['content-type'] = 'application/json'
@ -601,7 +601,7 @@ def cgi_wrapper(environ, start_response):
# actual morss use
try:
return [cgi_app(environ, start_response)] or []
return [cgi_app(environ, start_response) or '(empty)']
except (KeyboardInterrupt, SystemExit):
raise
except Exception as e: