summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2010-11-15 11:55:42 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2010-11-15 11:55:42 +0800
commit82263969d421ac84227c453a6681411da6f3604e (patch)
tree5a720fc66c82747b0d2fec1d806592c053b8c317
parent7054e0aed4b3db69b4355311381c6ad822f9b4d0 (diff)
ppslist2: fixed parsing order attribute
-rw-r--r--totem/plugin/ppslist2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/totem/plugin/ppslist2.py b/totem/plugin/ppslist2.py
index f91128b..deef508 100644
--- a/totem/plugin/ppslist2.py
+++ b/totem/plugin/ppslist2.py
@@ -215,7 +215,7 @@ class PPSClass:
self.title = unicode(node.getAttribute('name')).encode('utf-8')
self.url = ''
self.id = int(node.getAttribute('id'))
- self.order = str(node.getAttribute('order'))
+ self.order = str(node.getAttribute('ord'))
if node.hasAttribute('orderid'):
self.orderid = int(node.getAttribute('orderid'))
self.seq = str(node.getAttribute('seq'))