The branch, eden has been updated
       via  196006ebf8dad191df796a137d2ef263c6ea03fd (commit)
      from  99cbd6c62a2e1255274783e82a0cb40f5a5a0c33 (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=196006ebf8dad191df796a137d2ef263c6ea03fd

commit 196006ebf8dad191df796a137d2ef263c6ea03fd
Author: Martijn Kaijser <[email protected]>
Date:   Tue Jul 3 08:47:28 2012 +0200

    [script.moviequiz] -v0.5.5

diff --git a/script.moviequiz/addon.xml b/script.moviequiz/addon.xml
index 9e7bca2..08f9865 100644
--- a/script.moviequiz/addon.xml
+++ b/script.moviequiz/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.moviequiz"
        name="Movie Quiz"
-       version="0.5.4"
+       version="0.5.5"
        provider-name="twinther [[email protected]]">
     <requires>
         <import addon="xbmc.python" version="2.0"/>
diff --git a/script.moviequiz/changelog.txt b/script.moviequiz/changelog.txt
index 87d02c5..4da48fe 100644
--- a/script.moviequiz/changelog.txt
+++ b/script.moviequiz/changelog.txt
@@ -1,3 +1,6 @@
+[B]Version 0.5.5 - 2012-07-02[/B]
+- Fixed compatibility problem with Python 2.6
+
 [B]Version 0.5.4 - 2012-06-27[/B]
 - Online highscores are now located at http://tommy.winther.nu/moviequiz/
   - the old URL will expire in a couple of months
diff --git a/script.moviequiz/quizlib/db.py b/script.moviequiz/quizlib/db.py
index fd2ec38..72c13f4 100644
--- a/script.moviequiz/quizlib/db.py
+++ b/script.moviequiz/quizlib/db.py
@@ -20,7 +20,6 @@
 
 from xml.etree import ElementTree
 from xml.parsers.expat import ExpatError
-from xml.etree.ElementTree import ParseError
 
 
 import os
@@ -95,7 +94,7 @@ class Database(object):
                     settings['pass'] = doc.findtext('videodatabase/pass')
             except ExpatError:
                xbmc.log("Unable to parse advancedsettings.xml")
-            except ParseError:
+            except SyntaxError:
                 xbmc.log("Unable to parse advancedsettings.xml")
 
         xbmc.log("Successfully loaded DB settings")

-----------------------------------------------------------------------

Summary of changes:
 script.moviequiz/addon.xml     |    2 +-
 script.moviequiz/changelog.txt |    3 +++
 script.moviequiz/quizlib/db.py |    3 +--
 3 files changed, 5 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to