Quellcode durchsuchen

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

Bastien Sevajol vor 7 Jahren
Ursprung
Commit
0658e5adf8
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      hapic/ext/aiohttp/context.py

+ 1 - 1
hapic/ext/aiohttp/context.py Datei anzeigen

23
 from aiohttp import web
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
 AIOHTTP_RE_PATH_URL = re.compile(r'{([^:<>]+)(?::[^<>]+)?}')
27
 AIOHTTP_RE_PATH_URL = re.compile(r'{([^:<>]+)(?::[^<>]+)?}')
28
 
28
 
29
 
29