]> git.decadent.org.uk Git - dak.git/commitdiff
Ignore more python-apt warnings.
authorTorsten Werner <twerner@debian.org>
Fri, 25 Mar 2011 16:22:37 +0000 (17:22 +0100)
committerTorsten Werner <twerner@debian.org>
Fri, 25 Mar 2011 16:22:37 +0000 (17:22 +0100)
Signed-off-by: Torsten Werner <twerner@debian.org>
dak/queue_report.py
daklib/queue.py

index 98c80f0af85dd0b50bcbed1e6e8b856b80a2d11e..7176a886a8d76a9d05b6050c88b5993b84f7955e 100755 (executable)
 
 ################################################################################
 
+import warnings
+warnings.filterwarnings('ignore', \
+    "apt_pkg\.ParseTagFile\(\) is deprecated\. Please see apt_pkg\.TagFile\(\) for the replacement\.", \
+    DeprecationWarning)
+warnings.filterwarnings('ignore', \
+    "Attribute '.*' of the 'apt_pkg\.TagFile' object is deprecated, use '.*' instead\.", \
+    DeprecationWarning)
+
+################################################################################
+
 from copy import copy
 import glob, os, stat, sys, time
 import apt_pkg
index b652f844370f3409c8badd37df2ce86caa3d4998..2b7f52048a29d2a055fcce91faba825d29bc548c 100755 (executable)
@@ -63,7 +63,7 @@ warnings.filterwarnings('ignore', \
     "apt_pkg.ParseSection\(\) is deprecated. Please see apt_pkg\.TagSection\(\) for the replacement\.", \
     DeprecationWarning)
 warnings.filterwarnings('ignore', \
-    "Attribute 'Find' of the 'apt_pkg\.TagSection' object is deprecated, use 'find' instead\.", \
+    "Attribute '.*' of the 'apt_pkg\.TagSection' object is deprecated, use '.*' instead\.", \
     DeprecationWarning)
 
 ###############################################################################