[kernel] r7582 - people/waldi/scripts/snapshot

Bastian Blank waldi at costa.debian.org
Sun Oct 8 11:15:19 UTC 2006


Author: waldi
Date: Sun Oct  8 11:15:18 2006
New Revision: 7582

Modified:
   people/waldi/scripts/snapshot/package.py

Log:
snapshot/package.py: Ignore errors.


Modified: people/waldi/scripts/snapshot/package.py
==============================================================================
--- people/waldi/scripts/snapshot/package.py	(original)
+++ people/waldi/scripts/snapshot/package.py	Sun Oct  8 11:15:18 2006
@@ -258,7 +258,11 @@
     else:
         paths = maps.keys()
     for path in paths:
-        package(path, **maps[path])
+        try:
+             package(path, **maps[path])
+        except Exception, e:
+            import traceback
+            traceback.print_exc()
 
 if __name__ == '__main__':
     os.chdir(base)



More information about the Kernel-svn-changes mailing list