X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fconfig.py;fp=daklib%2Fconfig.py;h=9993ec3adbfb3bb2d61c4168d726e72eb7bc5cad;hb=4830d9be143c7645ea932b53fae095e275ad7814;hp=b35ed9a9229e602fcbde3e51eda59a70b8f93b84;hpb=825f70d9c27fab8c20b86067478e58dc6a9dc52d;p=dak.git diff --git a/daklib/config.py b/daklib/config.py index b35ed9a9..9993ec3a 100755 --- a/daklib/config.py +++ b/daklib/config.py @@ -36,6 +36,16 @@ 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\.Configuration' object is deprecated, use '.*' instead\.", \ + DeprecationWarning) +warnings.filterwarnings('ignore', \ + "apt_pkg\.newConfiguration\(\) is deprecated\. Use apt_pkg\.Configuration\(\) instead\.", \ + DeprecationWarning) + def which_conf_file(): return os.getenv("DAK_CONFIG", default_config)