The branch, eden has been updated
       via  c7e222045198f1ac404a956d4358f638b7131715 (commit)
      from  b216a13c3d73599260b841e5c42b490ded545ec9 (commit)

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

commit c7e222045198f1ac404a956d4358f638b7131715
Author: beenje <[email protected]>
Date:   Fri Jun 7 21:29:14 2013 +0200

    [script.module.metahandler] updated to version 1.0.4

diff --git a/script.module.metahandler/addon.xml 
b/script.module.metahandler/addon.xml
index 68743d2..8e41938 100644
--- a/script.module.metahandler/addon.xml
+++ b/script.module.metahandler/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="script.module.metahandler" 
             name="metahandler" 
-            version="1.0.3" 
+            version="1.0.4" 
             provider-name="Eldorado (inspired by anarchintosh, westcoast, 
daledude, t0mm0)">
   <requires>
     <import addon="xbmc.python" version="2.0" />
@@ -11,6 +11,15 @@
   </requires>
   <extension point="xbmc.python.module" library="lib" />
   <extension point="xbmc.addon.metadata">
+    <summary lang="en">Downloads Artwork for TV shows, Movies and Music videos 
for addons and stores them in a local SQLITE database</summary>
+    <description lang="en">Queries, stores, and returns metadata for TV shows, 
Movies and Musicvideos. 
[CR]Sources:[CR]www.thetvdb.com[CR]www.themoviedb.org[CR]www.imdb.com</description>
+    <disclaimer lang="en"></disclaimer>
+    <language></language>
     <platform>all</platform>
+    <license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
+    <forum></forum>
+    <website></website>
+    <email></email>
+    <source></source>
   </extension>
 </addon>
diff --git a/script.module.metahandler/changelog.txt 
b/script.module.metahandler/changelog.txt
index b71df27..733a5bd 100644
--- a/script.module.metahandler/changelog.txt
+++ b/script.module.metahandler/changelog.txt
@@ -1,3 +1,6 @@
+[B]Version 1.0.4[/B]
+- Quick band aid patch for Eden users - xbmcvfs.mkdirs is not included in Eden
+
 [B]Version 1.0.3[/B]
 - Rewrite of get_episode logic - now supports air date
 - Added search/refresh on tv shows - returns list of possible matches
diff --git a/script.module.metahandler/lib/metahandler/metacontainers.py 
b/script.module.metahandler/lib/metahandler/metacontainers.py
index cd2d02f..8531af6 100644
--- a/script.module.metahandler/lib/metahandler/metacontainers.py
+++ b/script.module.metahandler/lib/metahandler/metacontainers.py
@@ -98,7 +98,10 @@ class MetaContainer:
 
     def make_dir(self, mypath):
         ''' Creates sub-directories if they are not found. '''
-        if not xbmcvfs.exists(mypath): xbmcvfs.mkdirs(mypath)   
+        try:
+            if not xbmcvfs.exists(mypath): xbmcvfs.mkdirs(mypath)
+        except:
+            if not os.path.exists(mypath): os.makedirs(mypath)  
 
 
     def _del_metadir(self, path=''):

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

Summary of changes:
 script.module.metahandler/addon.xml                |   11 ++++++++++-
 script.module.metahandler/changelog.txt            |    3 +++
 .../lib/metahandler/metacontainers.py              |    5 ++++-
 3 files changed, 17 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to