Skip to content

Commit

Permalink
Scheduled monthly dependency update for November (#155)
Browse files Browse the repository at this point in the history
* Update flake8 from 3.4.1 to 3.5.0

* Update sphinx from 1.6.4 to 1.6.5

* fix linting
  • Loading branch information
pyup.io bot authored and samuelcolvin committed Nov 23, 2017
1 parent cf1cfc9 commit 96ee738
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aiohttp_devtools/runserver/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,6 @@ async def _handle(self, request):
else:
status, length = response.status, response.content_length
finally:
l = aux_logger.info if status in {200, 304} else aux_logger.warning
l('> %s %s %s %s', request.method, request.path, status, fmt_size(length))
logger = aux_logger.info if status in {200, 304} else aux_logger.warning
logger('> %s %s %s %s', request.method, request.path, status, fmt_size(length))
return response
4 changes: 2 additions & 2 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
coverage==4.4.1
docutils==0.14
flake8==3.4.1
flake8==3.5.0
grablib==0.6.1
pycodestyle==2.3.1
pyflakes==1.6.0
Expand All @@ -13,7 +13,7 @@ pytest-sugar==0.9.0
pytest-timeout==1.2.0
pytest-toolbox==0.2
pytest-xdist==1.20.1
Sphinx==1.6.4
Sphinx==1.6.5

# required to run "start" apps
aiohttp-jinja2==0.14.0
Expand Down

0 comments on commit 96ee738

Please sign in to comment.