Skip to content

Commit ad8cc67

Browse files
committed
Fixed DynamicPathRouter.raw_match()
1 parent de7a15d commit ad8cc67

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

aiohttp_dynamic/routing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ def get_info(self) -> typing.TypedDict:
458458
}
459459

460460
def raw_match(self, path: str) -> bool:
461-
return self.raw_path == path
461+
return self._raw_path == path
462462

463463
def match(self, path: str) -> bool:
464464
return self._pattern.fullmatch(path)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
setup(
44
name = 'aiohttp_dynamic',
55
packages = ['aiohttp_dynamic'],
6-
version = '1.1.1',
6+
version = '1.1.2',
77
license='Apache License 2.0',
88
description = 'aiohttp extension for creating and modifying dynamic routes in runtime',
99
author = 'bitrate16',
1010
author_email = '[email protected]',
1111
url = 'https://github.com/bitrate16/aiohttp-dynamic',
12-
download_url = 'https://github.com/bitrate16/aiohttp-dynamic/archive/1.1.1.tar.gz',
12+
download_url = 'https://github.com/bitrate16/aiohttp-dynamic/archive/1.1.2.tar.gz',
1313
keywords = ['aiohttp', 'dynamic', 'routing', 'mutable', 'aiohttp-server'],
1414
install_requires = [
1515
'aiohttp',

0 commit comments

Comments
 (0)