]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/config.py
bugfix
[dak.git] / daklib / config.py
index b35ed9a9229e602fcbde3e51eda59a70b8f93b84..fef7512d8b405ccf8e72e8d2164ecb5499cba3af 100755 (executable)
@@ -36,6 +36,18 @@ import socket
 
 default_config = "/etc/dak/dak.conf" #: default dak config, defines host properties
 
+# suppress some deprecation warnings in squeeze related to apt_pkg
+# module
+import warnings
+warnings.filterwarnings('ignore', \
+    "Attribute '.*' of the 'apt_pkg.*' object is deprecated, use '.*' instead\.", \
+    DeprecationWarning)
+warnings.filterwarnings('ignore', \
+    "apt_pkg.*\(\) is deprecated\. .* apt_pkg.*\(\) for the replacement\.", \
+    DeprecationWarning)
+
+################################################################################
+
 def which_conf_file():
     return os.getenv("DAK_CONFIG", default_config)