Keep consistance of aiohttp.web.HTTPForbidden() execution

This commit is contained in:
ziajka
2017-11-23 16:28:10 +01:00
parent efbf7728ea
commit fe60c414b9
5 changed files with 9 additions and 10 deletions

View File

@ -498,6 +498,6 @@ class QEMUHandler:
# Raise error if user try to escape
if filename[0] == ".":
raise aiohttp.web.HTTPForbidden
raise aiohttp.web.HTTPForbidden()
yield from response.file(image_path)