]> git.decadent.org.uk Git - dak.git/commitdiff
Let's hope nobody reads THAT commit!
authorTorsten Werner <twerner@debian.org>
Fri, 25 Mar 2011 16:25:34 +0000 (17:25 +0100)
committerTorsten Werner <twerner@debian.org>
Fri, 25 Mar 2011 16:25:34 +0000 (17:25 +0100)
It's too embarrassing.

Signed-off-by: Torsten Werner <twerner@debian.org>
dak/cruft_report.py
dak/queue_report.py

index 08d336d4466ea41fcef987c49a9fa105006e8b45..aac0d454b5af68cbf1c717eab68c2fc905bbd08e 100755 (executable)
@@ -35,6 +35,16 @@ Check for obsolete binary packages
 
 ################################################################################
 
+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)
+
+################################################################################
+
 import commands, os, sys, re
 import apt_pkg
 
index 7176a886a8d76a9d05b6050c88b5993b84f7955e..98c80f0af85dd0b50bcbed1e6e8b856b80a2d11e 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