diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-05-14 15:37:58 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-05-14 15:37:58 +0200 |
commit | 9973f09a616900ab0900974da77d22b566598b5f (patch) | |
tree | 0669cdda0a367e1b53b7286f19b6aaf1b9e4004a /module/gui/Collector.py | |
parent | revert premium account change see #309 (diff) | |
download | pyload-9973f09a616900ab0900974da77d22b566598b5f.tar.xz |
improved some code style issues
Diffstat (limited to 'module/gui/Collector.py')
-rw-r--r-- | module/gui/Collector.py | 2 |
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 |