Fix file path argument (#255)

This commit is contained in:
Raja Simon 2018-12-07 18:15:36 +05:30 committed by Tom Christie
parent cad82793d1
commit 25244b5c98
1 changed files with 1 additions and 1 deletions

View File

@ -195,6 +195,6 @@ class App:
self.scope = scope self.scope = scope
async def __call__(self, receive, send): async def __call__(self, receive, send):
response = FileResponse('/statics/favicon.ico') response = FileResponse('statics/favicon.ico')
await response(receive, send) await response(receive, send)
``` ```