X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2FTools%2FCList.py;h=aa0c6e80f1e4896e736d14e413708974b33eed26;hb=dec9693d8437a31dab8e4010b33b57e1476a315c;hp=d820175ca35d7fc858d1227670665d197a67d210;hpb=ee0903f520403c5e03caef287f813e7b062d05ab;p=vuplus_dvbapp diff --git a/lib/python/Tools/CList.py b/lib/python/Tools/CList.py index d820175..aa0c6e8 100644 --- a/lib/python/Tools/CList.py +++ b/lib/python/Tools/CList.py @@ -1,7 +1,7 @@ class CList(list): def __getattr__(self, attr): return CList([getattr(a, attr) for a in self]) - + def __call__(self, *args, **kwargs): for x in self: x(*args, **kwargs)