Skip to content

Commit

Permalink
Merge pull request aiokitchen#21 from Pavkazzz/bugfix/aiohttp-3.5
Browse files Browse the repository at this point in the history
[Fix] Aiohttp AccessLogger change location
  • Loading branch information
mosquito committed Dec 24, 2018
2 parents 1f72331 + 0516686 commit df7ecee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion aiomisc/service/aiohttp.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import socket

from aiohttp.web import Application, AppRunner, SockSite
from aiohttp.helpers import AccessLogger

try:
from aiohttp.web_log import AccessLogger
except ImportError:
from aiohttp.helpers import AccessLogger

from .base import Service
from ..utils import bind_socket
Expand Down

0 comments on commit df7ecee

Please sign in to comment.