And even more debugging

This commit is contained in:
Gina Häußge 2014-08-06 11:22:46 +02:00
parent 61f84302f3
commit 3eab5503f1

View file

@ -178,6 +178,9 @@ class UploadStorageFallbackHandler(tornado.web.RequestHandler):
else:
self._buffer = data
def on_finish(self):
pass
def is_multipart(self):
"""Checks whether this request is a `multipart` request"""
return self._content_type is not None and self._content_type.startswith("multipart")