X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fconfig.py;h=18ce9b721baba1db1e40c4f43154603164cdb2b1;hb=67421d267223b8a92c8acf8c00aa30d48e565ffa;hp=9993ec3adbfb3bb2d61c4168d726e72eb7bc5cad;hpb=d8eb64b3baff23bd2a9dab27df401c86cfbcbcfa;p=dak.git diff --git a/daklib/config.py b/daklib/config.py index 9993ec3a..18ce9b72 100755 --- a/daklib/config.py +++ b/daklib/config.py @@ -40,11 +40,16 @@ default_config = "/etc/dak/dak.conf" #: default dak config, defines host propert # module import warnings warnings.filterwarnings('ignore', \ - "Attribute '.*' of the 'apt_pkg\.Configuration' object is deprecated, use '.*' instead\.", \ + "Attribute '.*' of the 'apt_pkg.*' object is deprecated, use '.*' instead\.", \ DeprecationWarning) warnings.filterwarnings('ignore', \ "apt_pkg\.newConfiguration\(\) is deprecated\. Use apt_pkg\.Configuration\(\) instead\.", \ DeprecationWarning) +warnings.filterwarnings('ignore', \ + "apt_pkg\.ParseTagFile\(\) is deprecated\. Please see apt_pkg\.TagFile\(\) for the replacement\.", \ + DeprecationWarning) + +################################################################################ def which_conf_file(): return os.getenv("DAK_CONFIG", default_config)