projects
/
mdis.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ae63cd
)
core: fix dispatcher argument name
author
Dmitry Selyutin
<ghostmansd@gmail.com>
Tue, 13 Jun 2023 20:37:49 +0000
(23:37 +0300)
committer
Dmitry Selyutin
<ghostmansd@gmail.com>
Tue, 13 Jun 2023 20:37:49 +0000
(23:37 +0300)
src/mdis/core.py
patch
|
blob
|
history
diff --git
a/src/mdis/core.py
b/src/mdis/core.py
index d1847d8679f197ca46ff4903d4cc883c82cde3c8..0af0e53c90ee3651eb88dc03fbd5ad193016597e 100644
(file)
--- a/
src/mdis/core.py
+++ b/
src/mdis/core.py
@@
-40,8
+40,8
@@
class CallHook(object):
def call(self):
return self.__call
- def __call__(self,
visito
r, instance):
- return self.__call(
visito
r, instance)
+ def __call__(self,
dispatche
r, instance):
+ return self.__call(
dispatche
r, instance)
def hook(*typeids):