Make DownloadStatusPage a Resource

No need of this being a MultiFormatResource, because it renders just
HTML.
This commit is contained in:
Sajith Sasidharan 2020-06-23 18:06:54 -04:00
parent aec6e5a9d4
commit b14c0a0495
1 changed files with 1 additions and 1 deletions

View File

@ -366,7 +366,7 @@ class _EventJson(Resource, object):
return json.dumps(data, indent=1) + "\n"
class DownloadStatusPage(MultiFormatResource):
class DownloadStatusPage(Resource):
"""Renders /status/down-%d."""
def __init__(self, download_status):