diff options
author | mkaay <mkaay@mkaay.de> | 2010-01-01 17:13:43 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-01-01 17:13:43 +0100 |
commit | 4f904bd9610795c36d9e896bdf44c263ff43f5fd (patch) | |
tree | f232e78de164f9151371e56146439d34fbe28802 /module/file_list.py | |
parent | removed prints (diff) | |
download | pyload-4f904bd9610795c36d9e896bdf44c263ff43f5fd.tar.xz |
fixed SerienjunkiesOrg, no more segfault in gui?
Diffstat (limited to 'module/file_list.py')
-rw-r--r-- | module/file_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/file_list.py b/module/file_list.py index 8af66d5ed..232f2b7ea 100644 --- a/module/file_list.py +++ b/module/file_list.py @@ -127,7 +127,7 @@ class File_List(object): for thread_list only """ files = [] - for pypack in self.data["queue"] + self.data["packages"]: + for pypack in self.data["queue"]: for pyfile in pypack.files: if pyfile.status.type == None and pyfile.plugin.props['type'] == "container" and not pyfile.active: files.append(pyfile) |