aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Tools
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-07-20 14:24:44 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-07-20 14:24:44 +0000
commitaf2d1d61b2312e95998e195a144018a422c9f09a (patch)
treedb9bcc9cd8ad93319edb99065353a824b92b4f5e /lib/python/Tools
parent310cbd71bf12fd804427db85603cdcd12339db6d (diff)
downloadenigma2-af2d1d61b2312e95998e195a144018a422c9f09a.tar.gz
enigma2-af2d1d61b2312e95998e195a144018a422c9f09a.zip
whitespace cleanup
Diffstat (limited to 'lib/python/Tools')
-rw-r--r--lib/python/Tools/CList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Tools/CList.py b/lib/python/Tools/CList.py
index d820175c..aa0c6e80 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)