git.cweiske.de
/
enigma2.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Merge branch 'bug_202_networkconfig_cleanup'
[enigma2.git]
/
lib
/
python
/
Tools
/
BoundFunction.py
diff --git
a/lib/python/Tools/BoundFunction.py
b/lib/python/Tools/BoundFunction.py
index f28a50c81950c0ee2f03055a7ab9eb975c41bedd..29e8f61c8c50df9d63ed829807dac4b37d19cc1b 100644
(file)
--- a/
lib/python/Tools/BoundFunction.py
+++ b/
lib/python/Tools/BoundFunction.py
@@
-6,4
+6,6
@@
class boundFunction:
def __call__(self, *args, **kwargs):
newkwargs = self.kwargs
newkwargs.update(kwargs)
- self.fnc(*self.args + args, **newkwargs)
+ return self.fnc(*self.args + args, **newkwargs)
+
+