summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2009-09-13 16:41:51 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2009-09-13 16:41:51 +0800
commitef9747479aabb329a5b92344281e5c1a1f9325fa (patch)
tree5a6a5240238967c98bbdd15c0c5a52eb2d810e4c
parentc84c68db9ff0a232397595dc719f783657e05d69 (diff)
totem: on_channel_xml_downloaded takes 3 arguments
-rw-r--r--totem/plugin/sopcast.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/totem/plugin/sopcast.py b/totem/plugin/sopcast.py
index 918795b..53f2a03 100644
--- a/totem/plugin/sopcast.py
+++ b/totem/plugin/sopcast.py
@@ -295,7 +295,8 @@ class Sopcast (totem.Plugin):
def download_next_channel (self):
self.channels_index += 1
download = DownloadThread (self.channels[self.channels_index],
- self.on_channel_xml_downloaded)
+ self.on_channel_xml_downloaded,
+ self.channels_count)
download.start ()
def on_channel_xml_downloaded (self, res, count):