Skip to content

Commit

Permalink
--amend
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasts committed Jan 18, 2018
1 parent 2f6430a commit db33a2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ python:

env:
- 'AIOHTTP_VERSION=aiohttp==2.0.0' # WARNING: if you change this, change it in deploy too
- 'AIOHTTP_VERSION=aiohttp==2.3.1' # as per start template requirements
- 'AIOHTTP_VERSION=aiohttp==2.3.9' # as per start template requirements
- 'AIOHTTP_VERSION=https://github.com/aio-libs/aiohttp/archive/master.zip'

matrix:
Expand Down
2 changes: 1 addition & 1 deletion aiohttp_devtools/runserver/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def modify_request(self, request):
"""
Apply common path conventions eg. / > /index.html, /foobar > /foobar.html
"""
filename = URL(request.match_info['filename'], encoded=True).path
filename = URL.build(path=request.match_info['filename'], encoded=True).path
raw_path = self._directory.joinpath(filename)
try:
filepath = raw_path.resolve()
Expand Down

0 comments on commit db33a2d

Please sign in to comment.