Skip to content

Commit

Permalink
[fix] random fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosquito committed Aug 9, 2017
1 parent 55ebd38 commit 3ddaf5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,4 +1,4 @@
release:
release: upload_doc
python3 setup.py sdist bdist_wheel upload

build_doc:
Expand Down
2 changes: 1 addition & 1 deletion wsrpc_aiohttp/version.py
Expand Up @@ -9,7 +9,7 @@

team_email = 'me@mosquito.su'

version_info = (0, 2, 4)
version_info = (0, 2, 5)

__author__ = ", ".join("{} <{}>".format(*info) for info in author_info)
__version__ = ".".join(map(str, version_info))
Expand Down
2 changes: 1 addition & 1 deletion wsrpc_aiohttp/websocket/common.py
Expand Up @@ -216,7 +216,7 @@ def resolver(self, func_name):
)

if condition:
if self._handlers.get(class_name, None) is None:
if class_name not in self._handlers:
self._handlers[class_name] = callee(self)

return self._handlers[class_name]._resolve(method) # noqa
Expand Down

0 comments on commit 3ddaf5b

Please sign in to comment.