hi,

the following patch corrects a buglet in kaa metadata

a.
--- /usr/share/pyshared/kaa/metadata/disc/dvd.py.orig	2009-07-18 14:58:01.000000000 +0200
+++ /usr/share/pyshared/kaa/metadata/disc/dvd.py	2011-10-30 17:23:53.727834556 +0100
@@ -158,8 +158,8 @@
 
 
     def parseDVDdir(self, dirname):
-        if True not in [ os.path.isdir(x) for x in glob.iglob(dirname, 'video_ts') ] + \
-                       [ os.path.isfile(x) for x in glob.iglob(dirname, 'video_ts.vob') ]:
+        if True not in [ os.path.isdir(x) for x in glob.iglob(os.path.join(dirname, 'video_ts')) ] + \
+                       [ os.path.isfile(x) for x in glob.iglob(os.path.join(dirname, 'video_ts.vob')) ]:
             raise core.ParseError()
 
         # OK, try libdvdread

Attachment: signature.asc
Description: OpenPGP digital signature

------------------------------------------------------------------------------
RSA® Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to