diff --git a/src/allmydata/web/unlinked.py b/src/allmydata/web/unlinked.py index 09795101a..df342d7dd 100644 --- a/src/allmydata/web/unlinked.py +++ b/src/allmydata/web/unlinked.py @@ -87,23 +87,6 @@ class UploadResultsPage(Resource, object): elem = UploadResultsElement(self._upload_results) return renderElement(req, elem) - # This is weird but necessary because: - # - # 1. MultiFormatResource.render() uses argument "t" to figure out - # its output format. - # - # 2. Upload request is of the form "POST /uri?t=upload&file=newfile". - # See URIHandler.render_POST(). - # - # MultiFormatResource.render() looks up "t" argument, which in - # this case has the value "upload", and then it would look for a - # render_UPLOAD() method. - # - # We could change upload request to use more descriptive names - # that do not cause name collisions like this. That should be a - # separate change though. - render_UPLOAD = render_HTML - class UploadResultsElement(status.UploadResultsRendererMixin):