summaryrefslogtreecommitdiffstats
path: root/module/gui/Collector.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-05-14 15:37:58 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-05-14 15:37:58 +0200
commit9973f09a616900ab0900974da77d22b566598b5f (patch)
tree0669cdda0a367e1b53b7286f19b6aaf1b9e4004a /module/gui/Collector.py
parentrevert premium account change see #309 (diff)
downloadpyload-9973f09a616900ab0900974da77d22b566598b5f.tar.xz
improved some code style issues
Diffstat (limited to 'module/gui/Collector.py')
-rw-r--r--module/gui/Collector.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/gui/Collector.py b/module/gui/Collector.py
index caeff4460..6b0a54d2f 100644
--- a/module/gui/Collector.py
+++ b/module/gui/Collector.py
@@ -280,7 +280,7 @@ class CollectorModel(QAbstractItemModel):
def hasChildren(self, parent=QModelIndex()):
if not parent.isValid():
return True
- return (self.rowCount(parent) > 0)
+ return self.rowCount(parent) > 0
def canFetchMore(self, parent):
return False