From 433e6aa28d50eb48d4d91425367abdb6177de752 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Tue, 26 Jun 2007 19:56:23 +0000 Subject: [PATCH] fix queue_bottom in handle_event --- src/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.py b/src/core.py index 20709c54e..648dba48f 100644 --- a/src/core.py +++ b/src/core.py @@ -501,7 +501,7 @@ class Manager: if event['event_type'] is self.constants['EVENT_FINISHED']: # Queue seeding torrent to bottom if needed if self.get_pref('queue_seeds_to_bottom'): - self.queue_to_bottom(event['unique_ID']) + self.queue_bottom(event['unique_ID']) # If we are autoseeding, then we need to apply the queue if self.get_pref('auto_seed_ratio') == -1: self.apply_queue(efficient = False) # To work on current data