summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2010-01-03 09:54:21 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2010-01-03 09:54:21 +0800
commitcd6c1cb7a45668c0e2b4cca4c60c9f6adc538a82 (patch)
treed34c772287e0700dd1bdcb497ed32210e1f7f095
parentf145b3e360f01cebf6a0fa676c44c459b83da862 (diff)
totem: use the file title insteado of movie title
-rw-r--r--totem/plugin/ppstream.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/totem/plugin/ppstream.py b/totem/plugin/ppstream.py
index 601815a..b5f3362 100644
--- a/totem/plugin/ppstream.py
+++ b/totem/plugin/ppstream.py
@@ -1041,7 +1041,7 @@ class PPStream (totem.Plugin):
treeview = self.liststore[treeview_name]
for f in movie.files:
no = str(f.ci + 1) + '/' + str(movie.cn)
- it = treeview.append ([no, movie.title, self.recode_mrl (f.url), f.url])
+ it = treeview.append ([no, f.title, self.recode_mrl (f.url), f.url])
def show_files (self, movie):
if movie.getFiles():