[fix] Allow anything in notimplemented function for signals

This commit is contained in:
Jérôme Lebleu 2014-05-16 23:34:23 +02:00
parent 0a07acfcf2
commit d7f2151d78

View file

@ -392,7 +392,7 @@ class MoulinetteSignals(object):
pass
@staticmethod
def _notimplemented(**kwargs):
def _notimplemented(*args, **kwargs):
raise NotImplementedError("this signal is not handled")