diff --git a/morss/morss.py b/morss/morss.py index 2006805..49d27c3 100644 --- a/morss/morss.py +++ b/morss/morss.py @@ -552,8 +552,11 @@ def cgi_app(environ, start_response): rss = FeedGather(rss, url, options) out = FeedFormat(rss, options) - if not options.silent: - return out + if options.silent: + return [''] + + else: + return [out] def middleware(func): " Decorator to turn a function into a wsgi middleware "