From 96cc172ae196b2c4eeaaeb025c571cdfdc72c6d5 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Wed, 13 Jun 2007 04:20:05 +0000 Subject: [PATCH] cleanup automatic progress update in file tab --- src/interface.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/interface.py b/src/interface.py index cdbd30357..2aeb6d7f1 100644 --- a/src/interface.py +++ b/src/interface.py @@ -796,13 +796,6 @@ class DelugeGTK: new_file_info = self.manager.get_torrent_file_info(unique_id) - new_files = {} - - for index in range(len(new_file_info)): - if not new_file_info[index]['path'] == "": - assert(new_file_info[index]['path'] not in new_files.keys()) - new_files[new_file_info[index]['path']] = index - iter = self.file_store.get_iter_root() for file in new_file_info: self.file_store.set_value(iter, 4, round(file['progress'],2))