diff options
author | Luo Jinghua <sunmoon1997@gmail.com> | 2009-09-13 16:41:51 +0800 |
---|---|---|
committer | Luo Jinghua <sunmoon1997@gmail.com> | 2009-09-13 16:41:51 +0800 |
commit | ef9747479aabb329a5b92344281e5c1a1f9325fa (patch) | |
tree | 5a6a5240238967c98bbdd15c0c5a52eb2d810e4c | |
parent | c84c68db9ff0a232397595dc719f783657e05d69 (diff) |
totem: on_channel_xml_downloaded takes 3 arguments
-rw-r--r-- | totem/plugin/sopcast.py | 3 |
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): |