[Debconf-video-commits] r509 - in package/trunk: debian src

Ben Hutchings benh at alioth.debian.org
Sun Sep 13 19:22:30 UTC 2009


Author: benh
Date: 2009-09-13 19:22:30 +0000 (Sun, 13 Sep 2009)
New Revision: 509

Modified:
   package/trunk/debian/changelog
   package/trunk/src/dc-import-recordings
Log:
dc-import-recordings: ignore filenames that don't match the filename pattern we use

Modified: package/trunk/debian/changelog
===================================================================
--- package/trunk/debian/changelog	2009-07-25 16:18:16 UTC (rev 508)
+++ package/trunk/debian/changelog	2009-09-13 19:22:30 UTC (rev 509)
@@ -1,3 +1,10 @@
+debconf-video (20090910.1) UNRELEASED; urgency=low
+
+  * dc-import-recordings: ignore filenames that don't match the filename
+    pattern we use
+
+ -- Ben Hutchings <ben at decadent.org.uk>  Thu, 10 Sep 2009 03:24:27 +0100
+
 debconf-video (20090725.1) lenny; urgency=low
 
   * Trade quality for speed in stream encoding so we don't drop frames

Modified: package/trunk/src/dc-import-recordings
===================================================================
--- package/trunk/src/dc-import-recordings	2009-07-25 16:18:16 UTC (rev 508)
+++ package/trunk/src/dc-import-recordings	2009-09-13 19:22:30 UTC (rev 509)
@@ -43,7 +43,7 @@
                 cur.execute('COMMIT')
                 cur.execute('BEGIN')
 
-    for filename in glob.glob(config['FILE_BASE'] + '/dv/*/*/*.dv'):
+    for filename in glob.glob(config['FILE_BASE'] + '/dv/*/*/??:??:??.dv'):
         # Skip it if it's already known.
         if filename in known_filenames:
             continue




More information about the Debconf-video-commits mailing list