diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-06-27 19:30:08 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-06-27 19:30:08 +0200 |
commit | 4d30b0f988809bfc91f895ad70fee1037a1ee9a2 (patch) | |
tree | 0571c4b082af649bee3809c2a8979905497d11d8 /module/file_list.py | |
parent | gui test (diff) | |
download | pyload-4d30b0f988809bfc91f895ad70fee1037a1ee9a2.tar.xz |
gui displays downloads
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 feb7613bd..e9a836dbc 100644 --- a/module/file_list.py +++ b/module/file_list.py @@ -49,7 +49,7 @@ class File_List(object): new_file = self.new_pyfile(url) self.files.append(new_file) self.data[new_file.id] = Data(url) - self.data['order'].append(new_file.id) + self.data['order'].append(int(new_file.id)) def extend(self, urls): for url in urls: |