소스 검색

Merge branch 'feature/76__aiohttp' of https://github.com/algoo/hapic into feature/76__aiohttp

Bastien Sevajol 6 년 전
부모
커밋
0658e5adf8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hapic/ext/aiohttp/context.py

+ 1 - 1
hapic/ext/aiohttp/context.py 파일 보기

@@ -23,7 +23,7 @@ from hapic.processor import RequestParameters
23 23
 from aiohttp import web
24 24
 
25 25
 
26
-# Bottle regular expression to locate url parameters
26
+# Aiohttp regular expression to locate url parameters
27 27
 AIOHTTP_RE_PATH_URL = re.compile(r'{([^:<>]+)(?::[^<>]+)?}')
28 28
 
29 29