X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=daklib%2Fconfig.py;h=284cf1cca207e28294e360678fddca15fa3f3405;hb=8c7bc01acbef00bf9289afe9e004fb0ea00b0e63;hp=b35ed9a9229e602fcbde3e51eda59a70b8f93b84;hpb=f0bfd37e7286156598d79b53501ebe2000bb7924;p=dak.git diff --git a/daklib/config.py b/daklib/config.py index b35ed9a9..284cf1cc 100755 --- a/daklib/config.py +++ b/daklib/config.py @@ -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\. Please see apt_pkg.*\(\) for the replacement\.", \ + DeprecationWarning) + +################################################################################ + def which_conf_file(): return os.getenv("DAK_CONFIG", default_config)