]> git.decadent.org.uk Git - dak.git/commitdiff
dak.py
authorJoerg Jaspert <joerg@debian.org>
Sat, 9 Jan 2010 23:16:44 +0000 (00:16 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sat, 9 Jan 2010 23:16:44 +0000 (00:16 +0100)
ignore the crap sqlalchemy warnings

Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/dak.py

index 67314ff5bf54718d03141c28ef2bcc9071488ea9..9be8430069e6ad2be5994c82d5f26818358aaf2a 100755 (executable)
@@ -37,6 +37,7 @@ import os
 import sys
 import traceback
 import daklib.utils
+import warnings
 
 from daklib.daklog import Logger
 from daklib.config import Config
@@ -206,6 +207,10 @@ def main():
                 daklib.utils.warn("unknown command '%s'" % (cmdname))
                 usage(functionality, 1)
 
+    # We do not care. No idea wth sqlalchemy warns about them, makes no sense,
+    # so we ignore it.
+    warnings.filterwarnings("ignore", 'Predicate of partial index')
+
     # Invoke the module
     module = __import__(cmdname.replace("-","_"))